1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| .renderer {
| position: relative;
| // overflow: hidden;
| padding: 10px;
| }
| .miniMap {
| width: 200px;
| height: 120px;
| position: absolute;
| left: calc(100% - 215px);
| bottom: calc(100% - 130px);
| border: 1px solid #ccc;
| z-index: 99;
| background-color: #fff;
| }
|
| .toolBar {
| width: 46px;
| > div {
| width: 46px;
| display: flex;
| justify-content: space-between;
| align-items: center;
| flex-direction: column;
| border: none !important;
| padding: 0;
| }
| }
|
|