Bin
2025-12-17 bc6aa38242b0a7dea4b18bc90e2d78740436a58b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.minimap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
 
  &__region {
    height: 2px;
    width: 100%;
    padding: 1px 0;
    overflow: hidden;
    position: relative;
    box-sizing: content-box;
  }
 
  &__connection {
    height: 2px;
    position: absolute;
    background: var(--color);
  }
}