Skip to content

Commit

Permalink
fix: rm focus styling
Browse files Browse the repository at this point in the history
consistent with other nav items
  • Loading branch information
wackerow committed Sep 8, 2024
1 parent 46cc6fb commit 0e92088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Nav/Desktop/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const DesktopNavMenu = ({ toggleColorMode }: DesktopNavMenuProps) => {

const ThemeIcon = useColorModeValue(<MdBrightness2 />, <MdWbSunny />)
const themeIconAriaLabel = useColorModeValue(
// TODO: add i18n support
"Switch to Dark Theme",
"Switch to Light Theme"
)
Expand Down Expand Up @@ -65,7 +66,6 @@ const DesktopNavMenu = ({ toggleColorMode }: DesktopNavMenuProps) => {
},
}}
_hover={desktopHoverFocusStyles}
_focus={desktopHoverFocusStyles}
onClick={toggleColorMode}
/>

Expand Down

0 comments on commit 0e92088

Please sign in to comment.