From 7cb699d4f918e73c44f14c7e2e973b15c71d0323 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Fri, 13 Jun 2025 19:11:21 +0530 Subject: [PATCH] feat: maintain bg as per theme --- src/components/dashboard/MainMenu.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/dashboard/MainMenu.tsx b/src/components/dashboard/MainMenu.tsx index 1c05f9d9..04106936 100644 --- a/src/components/dashboard/MainMenu.tsx +++ b/src/components/dashboard/MainMenu.tsx @@ -39,6 +39,7 @@ export const MainMenu = ({ value = 'robots', handleChangeContent }: MainMenuProp color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit', '&:hover': { color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit', + backgroundColor: theme.palette.mode === 'light' ? '#f5f5f5' : 'rgba(255, 255, 255, 0.08)', }, };