We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f74dd9 commit 26f35e4Copy full SHA for 26f35e4
components/dashboard/src/components/PageWithSubMenu.tsx
@@ -29,7 +29,7 @@ export function PageWithSubMenu(p: PageWithSubMenuProps) {
29
{p.subMenu.map((e) => {
30
let classes = "flex block py-2 px-4 rounded-md";
31
if (e.link.some((l) => l === location.pathname)) {
32
- classes += " bg-gray-800 text-gray-50";
+ classes += " bg-gray-300 text-gray-800 dark:bg-gray-800 text-gray-50";
33
} else {
34
classes += " hover:bg-gray-100 dark:hover:bg-gray-800";
35
}
0 commit comments