style/status bar/note paths: fix the final path segment color when icons are displayed

This commit is contained in:
Adorian Doran
2025-12-15 01:18:35 +02:00
parent e9bfacdb7c
commit a551dfe4d6
2 changed files with 2 additions and 2 deletions

View File

@@ -131,7 +131,7 @@
color: var(--menu-item-icon-color);
}
span:last-child > span > a {
span:last-of-type > span > a {
color: var(--muted-text-color);
}
}

View File

@@ -114,7 +114,7 @@ function NotePath({ currentNotePath, notePathRecord }: { currentNotePath?: strin
)), NOTE_PATH_TITLE_SEPARATOR)}
{icons.map(({ icon, title }) => (
<span key={title} class={icon} title={title} />
<i key={title} class={icon} title={title} />
))}
</li>
);