Skip to content

Commit

Permalink
fix: update navbar colors
Browse files Browse the repository at this point in the history
  • Loading branch information
reneaaron committed Mar 11, 2024
1 parent 9c26822 commit 6356cf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/Navbar/NavbarLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ function NavbarLink({ children, end = false, href, target }: Props) {
classNames(
"flex items-center font-semibold hover:text-gray-600 dark:hover:text-neutral-400 transition px-1 text-md",
isActive
? " text-gray-800 dark:text-neutral-200"
: " text-gray-400 dark:text-gray-600"
? "text-gray-800 dark:text-neutral-200"
: "text-gray-400 dark:text-neutral-600"
)
}
>
Expand Down

0 comments on commit 6356cf3

Please sign in to comment.