Pandoc plugin for exporting & Export to PDF

Sure, you need to open custom.css (it’s in /your-graph/logseq folder or you can open it from Logseq settings) and add the following.

This one if you want to change the font only in Document Mode (the one you activate with t d shortcut (press Esc, then t then d)) like me:

:root :is(.document-mode){
  font-family: "Only Emoji", "NewComputerModernMath", "cmr10", "Noto Sans";
  font-size: 20px;
}

Or use this one for the whole page content anyway:

{
  font-family: "Only Emoji", "NewComputerModernMath", "cmr10", "Noto Sans";
  font-size: 20px;
}

In case you also want to hide block&page Properties in Document Mode:

:root :is(.document-mode)  .block-properties.block-properties.block-properties {
    display: none !important;
}

Of course you need the font I linked installed in your system.

3 Likes