The directory tree font size is too small in the desktop/laptop!!! I have to lean in to the screen to read it. Make it adjustable please.
Once you are done reading, please delete the above notes
The directory tree font size is too small in the desktop/laptop!!! I have to lean in to the screen to read it. Make it adjustable please.
Once you are done reading, please delete the above notes
CSS snippets can be used to adjust many parts of Obsidian’s interface. There’s a variable that controls that font size: --nav-item-size: var(--font-ui-small) which defaults to 13px in the default theme.
You can try
body {
--nav-item-size: 15px;
}
to start and see if that works out for you (adjust the px value to your liking).
