fix(ui): Update logout button hover state color

This commit is contained in:
Adam Shiervani 2025-02-27 15:14:43 +01:00
parent 6beb41f30c
commit d7d732121b
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ export default function DashboardNavbar({
<Menu.Item>
<div onClick={onLogout}>
<button className="block w-full">
<div className="flex items-center gap-x-2 rounded-md px-2 py-1.5 text-sm transition-colors hover:bg-slate-600 dark:hover:bg-slate-700">
<div className="flex items-center gap-x-2 rounded-md px-2 py-1.5 text-sm transition-colors hover:bg-slate-100 dark:hover:bg-slate-700">
<ArrowLeftEndOnRectangleIcon className="h-4 w-4" />
<div className="font-display">Log out</div>
</div>