Monospace fonts while typing or editind a block

Hi everyone, I come from Tiddlywiki and started using logseq.

My question is: is it possible to change the font when typing or editing a block? After editing is complete, the block returns to the normal font. I want to use some monospace font for editing, this will allow the tables to be better readable.

Welcome. Try adding into file custom.css a rule like this one:

.block-editor textarea {
    font-family: monospace;
}
3 Likes

Fantastic! It worked! Thanks @mentaloid

If you allow me, where can I find the list of logseq classes?

  • Could dive into the source code.
  • Much easier to open the inspector (Ctrl + Shift + i) and explore.
1 Like