mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-08 22:42:54 +00:00
32 lines
499 B
SCSS
32 lines
499 B
SCSS
.maplibregl-map {
|
|
font-family: inherit;
|
|
}
|
|
|
|
.maplibregl-ctrl-scale {
|
|
position: relative;
|
|
|
|
padding: 0 0 2px;
|
|
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
color: var(--ion-text-color);
|
|
|
|
background: none;
|
|
filter: drop-shadow(0 0 2px rgba(0 0 0 / 60%));
|
|
border: none;
|
|
|
|
&::after {
|
|
content: '';
|
|
|
|
position: absolute;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
|
|
height: 8px;
|
|
|
|
border-right: 2px solid var(--ion-color-dark);
|
|
border-bottom: 2px solid var(--ion-color-dark);
|
|
}
|
|
}
|