blob: b13f5d27d7374668155a45068dc5d30e0714f898 (
plain)
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
|
.popup {
width: auto;
min-height: 90%;
}
.popup .leaflet-popup-content {
margin: 0;
}
.markerIcon {
border: 2px solid #fff;
border-radius: 2px;
overflow: hidden;
}
.markerItemCount {
width: 18px;
height: 18px;
display: block;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 10px;
background: #fff;
text-align: center;
font-weight: bold;
}
|