Adjustable Directory tree font size

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

Use case or problem

Proposed solution

Current workaround (optional)

Related feature requests (optional)

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).

CleanShot 2026-04-15 at 04.50.49