I want to change my default app font with Roboto font.
Is there any option to do that globally, not page by page?
Change font family globally for angular app
bozhidarc
#1
manojdcoder
#2
It’s matter of CSS selector, if you want the whole app to follow one particular font just place a wild card selector in app.css
* {
font-family: Your font-family;
}
marklanham
#6
I’m using Nativescript with Angular and SCSS but don’t seem to have an app.scss or app.css file.
I have the following though, none of which work when using the asterisk selector:
- app.common.scss
- app.android.scss
- app.ios.scss
- app.component.scss
- app.component.android.scss
- app.component.ios.scss