obsidian-Golden-Topaz-theme
obsidian-Golden-Topaz-theme copied to clipboard
Incorrect tree collapse icon offset in files navigation
First off, amazing work with the colors, they're very calming, Salute!
I'm not sure if this is intended behavior or not, but the dropdown icon next to the directories seems to be offset down a little bit, which causes it to overlap with the icon underneath it.
Possible fix is to modify translateY, it should be -6 not 6 and even better add an extra .6.
.nav-folder.is-collapsed .nav-folder-collapse-indicator {
transform: translateX(-11px) translateY(-6.6px) rotate(-90deg);
opacity: 0.4;
}
- Edit: I noticed this also affects the icons in the main markdown file when using preview mode but in the opposite direction, so my fix wouldn't apply to one without affecting the other.