Ionic 4 ion-title change font size

I have an ionic 4 app where I want to change the font size of the ion-title on various pages.

How is this done?

Thanks

just add css in global.scss

ion-title{
  font-size: 2em;
}
1 Like