feat: maintain color as per theme

This commit is contained in:
amhsirak
2025-06-13 19:10:12 +05:30
parent 1e66e07ebd
commit e1f4ee94ba

View File

@@ -37,6 +37,9 @@ export const MainMenu = ({ value = 'robots', handleChangeContent }: MainMenuProp
alignItems: 'center',
textTransform: 'none',
color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit',
'&:hover': {
color: theme.palette.mode === 'light' ? '#6C6C6C' : 'inherit',
},
};