Fixed sidebar colur and Cpu and Ram

This commit is contained in:
2026-06-26 19:22:57 +02:00
parent bccba1434b
commit fbb37d6777
6 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -95,7 +95,7 @@ export function Sidebar({ collapsed, onToggle, mobileOpen, onMobileClose }: Side
"relative flex h-10 w-10 items-center justify-center rounded-lg transition-colors",
isActive
? "bg-sidebar-primary text-sidebar-primary-foreground"
: "text-sidebar-foreground/60 hover:bg-sidebar-accent hover:text-sidebar-accent-foreground"
: "text-sidebar-foreground/60 hover:bg-sidebar-accent hover:text-white"
)}
>
<item.icon className="h-5 w-5" />
@@ -104,7 +104,7 @@ export function Sidebar({ collapsed, onToggle, mobileOpen, onMobileClose }: Side
)}
</Link>
</TooltipTrigger>
<TooltipContent side="right" className="ml-2">
<TooltipContent side="right" className="ml-2 text-white">
{item.label}
</TooltipContent>
</Tooltip>
@@ -143,12 +143,12 @@ export function Sidebar({ collapsed, onToggle, mobileOpen, onMobileClose }: Side
<TooltipTrigger asChild>
<button
onClick={() => setFbDialogOpen(true)}
className="relative flex h-10 w-10 items-center justify-center rounded-lg transition-colors text-sidebar-foreground/60 hover:bg-sidebar-accent hover:text-sidebar-accent-foreground"
className="relative flex h-10 w-10 items-center justify-center rounded-lg transition-colors text-sidebar-foreground/60 hover:bg-sidebar-accent hover:text-white"
>
<Facebook className="h-5 w-5" />
</button>
</TooltipTrigger>
<TooltipContent side="right" className="ml-2">
<TooltipContent side="right" className="ml-2 text-white">
Facebook Accounts
</TooltipContent>
</Tooltip>