Fix Dart Sass deprecation warnings

- Replace color.red/green/blue() with color.channel() in styles.scss
- Replace deprecated if() ternary with @if/@else in _variants.scss
- Silence @import deprecation in angular.json (Bootstrap 5.x uses @import
  throughout; migrating to @use breaks the variable override mechanism)
This commit is contained in:
2026-04-26 07:32:15 +02:00
parent e12bbf29ae
commit 9be9f191bb
3 changed files with 19 additions and 14 deletions
+4 -1
View File
@@ -44,7 +44,10 @@
],
"styles": ["src/styles/styles.scss"],
"stylePreprocessorOptions": {
"includePaths": ["src/styles"]
"includePaths": ["src/styles"],
"sass": {
"silenceDeprecations": ["import"]
}
},
"scripts": [],
"browser": "src/main.ts"