How to increase font-size for the whole ionic 4 app?

Hi geshjosh,

Thanks for you reply : )

I added font-size attribute to veriables.scss, but its not working. I inspect the css in browser via ionic serve, and I founded something called “:host{ }” on the element also have a ‘font-size: 14px’ style and it has a higher priority than the one I just add to veriables.scss.

Finally, I specify the font-size for each element one by one in veriables.scss and it works now.

:root{
ion-item{
font-size: 20px;
}

ion-tab-button{
font-size: 16px;
}

ion-button{
font-size: 16px;
}
}

I also saw something called ‘Overriding Ionic Sass Variables’ but it is for ionic 3, seems not working at ionic 4.