Silences the dart-sass deprecation warnings that flooded every build: - All @import of local partials (colors, mixins, and the CSS-emitting partials) -> @use '...' as * (partials are pure defs, so 'as *' keeps the global names and the ~25 call sites unchanged). Added explicit @use './colors' to bootstrap-overrides.scss and cookies-eu.scss, which used -palette* transitively (broke under @use's scoping). - lighten(c, x%) -> color.adjust(c, $lightness: x%) and darken -> negative, with @use 'sass:color' in the 6 affected files. Compiles clean (byte-for-byte CSS behavior preserved).
50 lines
737 B
SCSS
50 lines
737 B
SCSS
@use '../../stylesheets/mixins' as *;
|
|
|
|
.selectionmap-leaflet-container {
|
|
height: 100%;
|
|
min-height: 65vh;
|
|
width: 100%;
|
|
/* min-width: 75vw; */
|
|
display: flex;
|
|
margin: 20px auto;
|
|
}
|
|
|
|
div.selectionmap-leaflet-container {
|
|
position: relative;
|
|
margin: 0;
|
|
}
|
|
|
|
@include breakpoint(mobile) {
|
|
.selectionmap-leaflet-container {
|
|
height: 80%;
|
|
min-width: 90vw;
|
|
}
|
|
}
|
|
|
|
.dist-slider {
|
|
margin: 0px 10px 30px 10px;
|
|
}
|
|
|
|
.center-in-my-pos {
|
|
margin: 10px;
|
|
}
|
|
.sidebar-tabs>li>a,
|
|
.sidebar-tabs>ul>li>a {
|
|
display: inline-block;
|
|
}
|
|
|
|
.sidebar {
|
|
width: 300px;
|
|
}
|
|
|
|
.sidebar-left~.sidebar-map .leaflet-left {
|
|
left: 315px;
|
|
}
|
|
|
|
.sidebar-tab-btn-group {
|
|
margin-top: 10px;
|
|
}
|
|
|
|
div.sidebar-tab-btn-group > button > i {
|
|
margin-right: 3px;
|
|
}
|