CSS to change font
Posted: Sun Sep 16, 2018 5:07 am
by Deon
Hi
I would like to change the font of all elements on the app.
Do I have to change each element or is there a one liner CSS code that I can use to change the font of all element in one go?
Thanks
CSS to change font
Posted: Sun Sep 16, 2018 11:12 am
by Serhii Kulibaba
Hello Deon, there is no common CSS class to change the font for all components, but you can use the selector "select all" for that:
pre* {
font-family:monospace !important;
}/pre
CSS to change font
Posted: Fri Oct 05, 2018 6:31 am
by Deon
Thank you. Works perfectly.