Skip to content

Commit 26f35e4

Browse files
gtsiolisroboquat
authored andcommitted
Improve sidebar menu colors
1 parent 6f74dd9 commit 26f35e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/dashboard/src/components/PageWithSubMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export function PageWithSubMenu(p: PageWithSubMenuProps) {
2929
{p.subMenu.map((e) => {
3030
let classes = "flex block py-2 px-4 rounded-md";
3131
if (e.link.some((l) => l === location.pathname)) {
32-
classes += " bg-gray-800 text-gray-50";
32+
classes += " bg-gray-300 text-gray-800 dark:bg-gray-800 text-gray-50";
3333
} else {
3434
classes += " hover:bg-gray-100 dark:hover:bg-gray-800";
3535
}

0 commit comments

Comments
 (0)