Skip to content

Commit

Permalink
fix: made active tab forecolor more prominent for hub navigation (#1921)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickytonline authored Oct 17, 2023
2 parents 6cd7473 + eeee241 commit fe997ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/hub.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const HubLayout = ({ children }: { children: React.ReactNode }) => {
}, [router, onboarded]);

const getActiveLinkClassNames = (href: string) => {
return router.pathname === href ? "text-light-slate-11" : "text-slate-300";
return router.pathname === href ? "text-light-slate-12" : "text-slate-300";
};

return (
Expand Down

0 comments on commit fe997ed

Please sign in to comment.