From 587454985fe1d6c402f08507b7e86ec1b3f89583 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Mon, 25 Aug 2025 19:59:35 +0530 Subject: [PATCH] fix: match on hover menu tabs --- src/components/dashboard/MainMenu.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/dashboard/MainMenu.tsx b/src/components/dashboard/MainMenu.tsx index 3dcf34d8..f150f31e 100644 --- a/src/components/dashboard/MainMenu.tsx +++ b/src/components/dashboard/MainMenu.tsx @@ -44,18 +44,21 @@ export const MainMenu = ({ value = 'robots', handleChangeContent }: MainMenuProp justifyContent: 'flex-start', textAlign: 'left', fontSize: '17px', - padding: '20px 16px 20px 22px', + letterSpacing: '0.02857em', + padding: '20px 20px 20px 22px', minHeight: '48px', minWidth: '100%', display: 'flex', alignItems: 'center', textTransform: 'none', color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit', - '&:hover': { + '&:hover': { + color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit', backgroundColor: theme.palette.mode === 'light' ? '#f5f5f5' : 'inherit', }, }; + return ( <>