I know this question is asked and answered before in the links below. I want to change the default font without having to add to every css.
Things I have tried:
For Ionic 2: Download the fonts from fonts.google.com and paste it in your assets folder. Now in your scss file do the following:
@font-face {
font-family: MyFont;
src: url("../assets/fonts/Lato-Regular.ttf");
}
body, span, button, h1, h2, h3, h4, h5, h6, p, ion-item, ion-title {
font-family: 'MyFont' !important;
}