diff --git a/components/dashboard/Sidebar.tsx b/components/dashboard/Sidebar.tsx index b478151..b1058e0 100644 --- a/components/dashboard/Sidebar.tsx +++ b/components/dashboard/Sidebar.tsx @@ -199,12 +199,12 @@ function NavItemLink({ href={href} onClick={onClick} title={collapsed ? item.label : undefined} - className={`flex items-center gap-2.5 rounded-lg px-2.5 py-2 text-sm font-medium transition-colors ${ + className={`flex items-center gap-2.5 rounded-lg px-2.5 py-2 text-sm font-medium ${ collapsed ? 'justify-center' : '' } ${ isActive ? 'bg-brand-orange/10 text-brand-orange' - : 'text-neutral-600 dark:text-neutral-400 hover:text-neutral-900 dark:hover:text-white hover:bg-neutral-100 dark:hover:bg-neutral-800' + : 'text-neutral-600 dark:text-neutral-400 hover:text-neutral-900 dark:hover:text-white hover:bg-neutral-100 dark:hover:bg-neutral-800 transition-colors' }`} > @@ -252,16 +252,16 @@ export default function Sidebar({ const isCollapsed = isMobile ? false : collapsed return ( -
+
{/* Logo */} Pulse {!isCollapsed && ( Pulse diff --git a/components/dashboard/UtilityBar.tsx b/components/dashboard/UtilityBar.tsx index 6024512..7c9f01e 100644 --- a/components/dashboard/UtilityBar.tsx +++ b/components/dashboard/UtilityBar.tsx @@ -67,7 +67,7 @@ export default function UtilityBar() { } return ( -
+
{/* Left: mobile sidebar toggle */}