How to zoom / increase code font size?

Hello,
I have some problems with my sight... so for me reading very small lines of code is a problem and it causes a lot of headaches.
I tried zooming on the browser, but that messes with the user interface.
Is there a way to change the font size of the code in retool?
Thank you very much!

I have the exact same problem. I really with there's was a way to increase only the text editor font size.

Hi @andrea_bluelabs and @vangelov, thanks for surfacing this issue!

Retool uses React CodeMirror for a lot of its code editors so as a temporary workaround we might be able to target those elements with some custom CSS:

.CodeMirror{
  font-size:1.2em !important;
  line-height: 1.4em !important;
}

You can try applying this across your entire or in your advanced settings:

3 Likes

That works, thank you!

Thank you very much, that works!