-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathMapboxMap.scss
More file actions
46 lines (38 loc) · 1.07 KB
/
MapboxMap.scss
File metadata and controls
46 lines (38 loc) · 1.07 KB
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
$desktop-breakpoint: 992px;
.mapbox-map-container {
width: 100%;
height: 100%;
}
.mapboxgl-control-container {
.mapboxgl-ctrl {
&-group {
margin: 10px var(--spacing-small) 30px 0 !important;
border-radius: var(--rounding-large);
box-shadow: 0 0 0 var(--spacing-xxx-small) #e5e7eb !important;
button {
padding: var(--spacing-large); // UX design
}
}
&-zoom-in {
background-image: url('../../../assets/plus.svg');
background-repeat: no-repeat;
background-size: 20px 20px;
background-position: center center;
}
&-zoom-out {
background-image: url('../../../assets/minus.svg');
background-repeat: no-repeat;
background-size: 20px 20px;
background-position: center center;
}
&-icon {
background-image: none;
}
}
}
.mapsindoors-map--kiosk {
.mapboxgl-ctrl-logo,
.mapboxgl-ctrl-attrib {
pointer-events: none;
}
}