kognise / obsidian-atom

A theme for Obsidian based on Atom's One family
The Unlicense
223 stars 57 forks source link

Start of note titles cut off in nav file titles #4

Closed mikeu closed 3 years ago

mikeu commented 3 years ago

Thanks for this great theme! I've been using it for a few weeks now and am very happy with all but one minor issue. The beginning of every note title in the nav tab is missing: image Those dates should obviously start with a complete "2", and the entire "T" is missing from "Template", as well as a pixel or two of the "e".

The problem seems to be a combination of the base style

.nav-file-title-content {
    text-indent: -10px;
}

and the theme style

.nav-file-title-content {
    overflow: hidden;
}

Note that nav folder titles do appear correctly. As far as I can tell, this is because they don't have the base text-indent: -10px, so the theme's overflow: hidden isn't causing a problem.