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).
32 lines
599 B
SCSS
32 lines
599 B
SCSS
@use '../../stylesheets/colors' as *;
|
|
@use '../../stylesheets/mixins' as *;
|
|
|
|
.fire-leaflet-container {
|
|
min-height: 40vh;
|
|
min-width: 40vw;
|
|
width: 50%;
|
|
margin: 0 0 10px 10px !important;
|
|
display: flex;
|
|
float: right !important;
|
|
}
|
|
|
|
.ViewFire > h4.page-header {
|
|
line-height: 1.3em;
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.fire-leaflet-container {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.comments-info {
|
|
font-size: 14px;
|
|
color: $light;
|
|
/* display: inline-flex; */
|
|
/* background-color: #fefefe;
|
|
border-color: #fdfdfe;
|
|
padding: 10px;
|
|
border-radius: 3px; */
|
|
}
|