Answers for "styles scss angular"

CSS
3

change css to scss angular

ng config schematics.@schematics/angular:component.styleext scss
Posted by: Guest on April-22-2020
0

angular import styles.scss

in angular.json:
...
"styles": [
              ...
              "src/styles.scss"
            ],

and in the components.ts
...
styleUrls: ['./app.component.scss']
Posted by: Guest on October-22-2021

Browse Popular Code Answers by Language