feat: reduce font weight of sidebar entity items to 400

Section group headers and nav items stay at font-weight 500 (medium).
Individual entity items under sections now use font-weight 400 (normal)
to create better visual hierarchy.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
lucaronin
2026-02-17 19:57:31 +01:00
parent 45a6d8800a
commit 6c63abc9c5

View File

@@ -157,7 +157,7 @@ export const Sidebar = memo(function Sidebar({ entries, selection, onSelect, onS
<div
key={entry.path}
className={cn(
"cursor-pointer truncate rounded-md text-[13px] font-medium transition-colors",
"cursor-pointer truncate rounded-md text-[13px] font-normal transition-colors",
isActive(isTopic ? { kind: 'topic', entry } : { kind: 'entity', entry })
? "text-foreground"
: "text-foreground hover:bg-accent"