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).
31 lines
514 B
SCSS
31 lines
514 B
SCSS
@use '../../stylesheets/colors' as *;
|
|
|
|
.App > .container {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.App .verify-email {
|
|
margin-bottom: 0;
|
|
padding: 0;
|
|
border-top: none;
|
|
border-bottom: 1px solid #e7e7e7;
|
|
background: #fff;
|
|
color: $gray-dark;
|
|
border-radius: 0;
|
|
|
|
p {
|
|
padding: 19px;
|
|
}
|
|
|
|
.btn {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background: url(/home-fire.jpg) no-repeat center center fixed;
|
|
-webkit-background-size: cover;
|
|
-moz-background-size: cover;
|
|
-o-background-size: cover;
|
|
background-size: cover;
|
|
}
|