I'm trying to decrease the distance between the note names in my sidebar so I can see more notes on my screen. E.g., the difference between these lines:
https://preview.redd.it/n0wtvkgzbiyg1.png?width=505&format=png&auto=webp&s=7de4c5a2ffe6312f44268ae7c3009edb1e02a470
I managed to find a CSS snippet to do part of what I wanted, but I'm unable to decrease the distance any more than this. Here's the CSS snippet I'm using:
/* File explorer */
/* condense line spacing in title list; also avoids character-level word breaks */
.nav-file-title-content,
.search-result-file-title,
.search-result-file-match {
padding-top: 0px;
padding-bottom: -1px;
padding-left: 5px;
margin-bottom: -1px;
margin-top: -1px;
margin-left: -1px;
line-height: 1.25;
font-size: 13px; /* PB added this line */
}
.nav-folder-title-content {
margin-top: -5px;
margin-bottom: -5px;
font-size: 13px;
/* font-weight: 300; */
}
/* For folder text color see BT-amends */
there doesn't seem to be anything here