WebCore UI code font size

@ipaterson
This was never a real problem but it's a bit more noticeable now.
I have been trying out the Brave browser and have noticed quite a variance in the font sizes on the piston edit page.
Is there a spot, maybe a global var, where the code can be bumped up in size?

Have you tried the ol' "CTRL-[plus+]" method of scaling pages (per domain) in that browser? Brave also lets you set minimum font size globally under Settings > Appearance > Customize fonts

1 Like

Yes I've tried the sizing options but I missed that Min Font slider. :slight_smile:
Thanks, it works for the code. Makes a few other tabs a tiny bit bigger like the Devices but I can fiddle and live with that.

1 Like

For anyone else that needs larger text it seems that the font size inherits from the base size throughout most of webCoRE including the code view. Using an extension like Stylish you can customize the font size with the following (the default is 12px):

body {
  font-size: 14px;
}
3 Likes