Cleans up AIO's Sass files by: * Switching them all over to the `@use`-based API from Angular Material. * Removing the import of the Material theming API in a bunch of places that weren't using it. * Migrating the new usages of Sass utility functions to the new syntax (e.g. `map.get` vs `map-get`). * Fixing a few files that were using 4 spaces for indentation instead of 2. PR Close #42442
14 lines
366 B
SCSS
Executable File
14 lines
366 B
SCSS
Executable File
// import directories
|
|
@use './0-base' as base;
|
|
@use './1-layouts' as layouts;
|
|
@use './2-modules' as modules;
|
|
|
|
// import print styles
|
|
@use './print';
|
|
|
|
@use '~@angular/material' as mat;
|
|
|
|
// Include the base styles for Angular Material core. We include this here so that you only
|
|
// have to load a single css file for Angular Material in your app.
|
|
@include mat.core();
|