I want to integrate my custom fonts for my angular 4.x project which are in assets folder. and I am using angular material. so for material I am setting custom typography in my styles.sass
Here's the code:
@import '~@angular/material/theming'
$used-fonts : 'Avenir', arial
$general-typography : mat-typography-config(
$font-family: quote($used-fonts)
)
@include mat-core($general-typography)
The error which I got:
Invalid CSS after "...ography-config(": expected expression (e.g. 1px, bold), was "{"
giving me an error at :
any idea?