after generating a new project with Angular CLI and choosing SASS:
Which stylesheet format would you like to use? SASS [ http://sass-lang.com ]
adding material with ng:
ng add @angular/material
and finally generating the nav-bar component of material with:
ng generate @angular/material:materialNav --name=main-nav
Gives us a main-nav.component.sass with a css syntax:
.sidenav-container {
height: 100%;
}
.sidenav {
width: 200px;
}
.sidenav .mat-toolbar {
background: inherit;
}
.mat-toolbar.mat-primary {
position: sticky;
top: 0;
z-index: 1;
}
Anyone knows if it's possible to generate from @angular/material with sass syntax?
Thank you