-
Notifications
You must be signed in to change notification settings - Fork 29
/
index.css
97 lines (78 loc) · 1.49 KB
/
index.css
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
body {
margin: 0;
font-family: 'Rubik';
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
html,
body,
#root {
height: 100%;
overflow: hidden;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
.leaflet-container {
width: 100%;
height: 100vh;
}
.leaflet-container,
.leaflet-pane:not(.leaflet-popup-pane) {
z-index: unset;
}
.leaflet-popup-content-wrapper {
background: none;
box-shadow: none;
color: unset;
border-radius: 0;
}
.leaflet-popup-content {
margin: 0;
}
.leaflet-popup-tip-container,
.leaflet-popup-close-button {
display: none;
}
.leaflet-div-icon {
background: none;
border: none;
}
.leaflet-marker-icon {
z-index: 2 !important;
}
.leaflet-popup-content p {
margin: 0;
}
.leaflet-control-attribution {
bottom: 0;
right: 0;
}
.dark-theme .leaflet-tile-pane,
.dark-theme .leaflet-control-attribution {
-webkit-filter: invert(1) grayscale(1);
filter: invert(1) grayscale(1);
}
svg.marker text {
font-family: 'Rubik';
font-weight: 500;
}
[data-theme='dark'] *::-webkit-scrollbar {
width: 0.35em;
}
[data-theme='dark'] *::-webkit-scrollbar-track {
background: #000000;
}
[data-theme='dark'] *::-webkit-scrollbar-thumb {
background-color: #333333;
}
[data-theme='light'] *::-webkit-scrollbar {
width: 0.35em;
}
[data-theme='light'] *::-webkit-scrollbar-track {
background: #f6f6f6;
}
[data-theme='light'] *::-webkit-scrollbar-thumb {
background-color: #cccccc;
}