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

feat: update navbar hover effect (#10305) #10355

Merged
merged 1 commit into from
Jun 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading