Skip to content
Merged
Changes from 1 commit
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
3 changes: 1 addition & 2 deletions packages/clerk-js/src/ui/elements/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -279,14 +279,13 @@ const NavButton = (props: NavButtonProps) => {
gap: t.space.$3,
justifyContent: 'flex-start',
backgroundColor: isActive ? t.colors.$neutralAlpha100 : undefined,
color: isActive ? t.colors.$primary500 : t.colors.$neutralAlpha600,
color: isActive ? t.colors.$primary500 : t.colors.$colorMutedForeground,
'&:hover': {
backgroundColor: isActive ? undefined : t.colors.$neutralAlpha25,
},
'&:focus': {
backgroundColor: isActive ? undefined : t.colors.$neutralAlpha50,
},
opacity: isActive ? 1 : 0.6,
}),
sx,
]}
Expand Down
Loading