Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
feat: navbar hover effect (#10305) (#10355)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abiheb authored Jun 8, 2024
1 parent 704cd5e commit a475c61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/navbar/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export default function Navbar() {
onClick={() => setTheme("light")}
aria-label="Toggle Theme"
>
<SunIcon className="h-5 w-5 text-primary-low hover:text-secondary-low" />
<SunIcon className="h-5 w-5 text-primary-low hover:text-secondary-low dark:hover:text-tertiary-medium" />
</button>
);
}
Expand Down Expand Up @@ -179,7 +179,7 @@ export default function Navbar() {
>
<div className="relative p-2">
<FaGithub
className="text-primary-low hover:text-secondary-low"
className="text-primary-low hover:text-secondary-low dark:hover:text-tertiary-medium"
aria-label="GitHub"
/>
</div>
Expand Down

0 comments on commit a475c61

Please sign in to comment.