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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@root-entry-name: 'default';
@import '~antd/es/style/themes/index.less';
@panda-gis-tip-prefix-cls: ~'@{ant-prefix}-panda-gis-tip';
.@{panda-gis-tip-prefix-cls} {
&-Tipwripconter {
width: 100%;
height: 100%;
pointer-events: auto;
}
&-TipAll {
width: 100%;
height: 85%;
}
&-Tipconter {
display: flex;
width: 100%;
height: 100%;
background-color: white;
}
&-Tipleft {
width: 100%;
height: 100%;
background-color: #f5f6f7;
}
&-tipfooter {
position: relative;
&-tipfooterar {
right: 0;
bottom: 0;
left: 0;
width: 0;
height: 0;
margin: auto;
background-color: 'red';
border: 10px solid white;
border-right-color: transparent;
border-bottom-color: transparent;
border-left-color: transparent;
}
}
}