fix: inherit bg on hover

This commit is contained in:
amhsirak
2025-11-07 19:07:00 +05:30
parent ca6615f3c0
commit 343f6fdf7a

View File

@@ -163,6 +163,9 @@ export const NavBar: React.FC<NavBarProps> = ({
onClick={toggleTheme}
sx={{
color: darkMode ? '#ffffff' : '#0000008A',
'&:hover': {
background: 'inherit'
}
}}
>
{darkMode ? <LightMode /> : <DarkMode />}