File explorer line spacing

I added the font-size line to my css sheet - see code below. This reduces the font size of the note titles, though not of the folders - see screenshot.

I am looking to:

  1. reduce the font size of the folders e.g. story rivers, images), and
  2. reduce the spacing between the note titles a bit.
/* condense line spacing on file explorer title list. also avoids character-level word breaks */
.nav-file-title-content,
.search-result-file-title,
.search-result-file-match {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: normal !important;
    word-break: keep-all;
    font-size: 13px;
}

lines

I think someone is helping you at #css-themes on Discord?

Let us know if it gets resolved.

Thanks for reacting :smiley:
Yes, @cannibalox provided some good code that did the trick.

1 Like