-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstyles.module.css
More file actions
46 lines (40 loc) · 959 Bytes
/
styles.module.css
File metadata and controls
46 lines (40 loc) · 959 Bytes
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
.map-popup {
display: flex;
padding: 0;
width: 20rem;
min-height: 10rem;
max-height: 20rem;
overflow: auto;
font-family: var(--go-ui-font-family-sans-serif);
font-size: var(--go-ui-font-size-md);
& :global(.mapboxgl-tip) {
flex-shrink: 0;
}
& :global(.mapboxgl-popup-content) {
display: flex;
flex-direction: column;
flex-grow: 1;
padding: 0;
overflow: auto;
}
& :global(.mapboxgl-popup-content > div) {
display: flex;
flex-direction: column;
flex-grow: 1;
padding: 0;
overflow: auto;
}
.container {
flex-grow: 1;
border: var(--go-ui-width-separator-thin) solid var(--go-ui-color-separator);
width: 100%;
height: 100%;
overflow: auto;
.close-button {
font-size: 1.33em;
}
.content {
overflow: auto;
}
}
}