fix hover on the sidebar in light mode
All checks were successful
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Successful in 1m5s

Took 8 minutes
This commit is contained in:
Braydon 2024-10-09 14:38:54 -04:00
parent 1634fb7520
commit e26a9e0267
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ const CategoryItem = ({
>
<Button
className={cn(
`relative w-full px-1.5 h-8 justify-between hover:bg-accent/10 dark:hover:bg-accent/35`,
`relative w-full px-1.5 h-8 justify-between hover:bg-accent/35`,
node.isFolder
? "mb-0.5 text-sm font-semibold"
: "lg:text-base",

View File

@ -10,9 +10,9 @@ import SimpleTooltip from "@/components/simple-tooltip";
import { capitalizeWords } from "@/lib/string";
const themes = {
system: <Monitor className="w-4 h-4" />,
dark: <MoonStar className="w-4 h-4" />,
light: <Sun className="w-4 h-4" />,
system: <Monitor className="w-4 h-4" />,
};
/**