Counts to the right

This commit is contained in:
Gregory Schier
2026-03-12 18:55:03 -07:00
parent f91f40e3a1
commit 7fbce4e808

View File

@@ -188,7 +188,7 @@ function ItemInner({ item }: { item: SidebarItem }) {
return (
<div className="flex items-center gap-2 w-full min-w-0">
<span className="truncate">{item.label}</span>
{count > 0 && <span className="text-text-subtlest text-2xs shrink-0">{count}</span>}
{count > 0 && <span className="ml-auto text-text-subtlest text-2xs shrink-0">{count}</span>}
</div>
);
}