SCSS

SCSS - Syntactically Awesome Style Sheets.

References

Converting your Angular application from CSS to SCSS

use this command

1
ng config schematics.@schematics/angular:component.styleext scss

This adds something to the angular.json file indicating that scss files are used (rather than css). But your existing project still needs to be corrected. I found several articles to help with this

References

SCSS vs SASS

  • Version 3 of SASS introduced, SCSS
  • Summary – SCSS is newer, use it.

References