diff options
Diffstat (limited to 'apps/web/components/shared')
| -rw-r--r-- | apps/web/components/shared/sidebar/SidebarItem.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/web/components/shared/sidebar/SidebarItem.tsx b/apps/web/components/shared/sidebar/SidebarItem.tsx index cfbd7253..e602a435 100644 --- a/apps/web/components/shared/sidebar/SidebarItem.tsx +++ b/apps/web/components/shared/sidebar/SidebarItem.tsx @@ -28,8 +28,10 @@ export default function SidebarItem({ return ( <li className={cn( - "relative flex justify-between rounded-lg hover:bg-accent", - path == currentPath ? "bg-accent/50" : "", + "relative flex justify-between rounded-lg text-sm transition-colors hover:bg-accent", + path == currentPath + ? "bg-accent/50 text-foreground" + : "text-muted-foreground", className, )} style={style} |
