Skip to content

Commit

Permalink
header color agan ups
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipSkaug committed May 14, 2024
1 parent c7cc2da commit d5ba795
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Header/AppHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import UserAvatar from "./UserAvatar";

const activeStyle: React.CSSProperties = {
fontWeight: "bold",
color: "#023874",
};

const AppHeader = (): JSX.Element => {
Expand All @@ -18,7 +19,7 @@ const AppHeader = (): JSX.Element => {
const linkElements = routes.map((route) => (
<NavLink
key={route.path}
className="md:text-gray-600 md:hover:text-blue-400 md:dark:text-white p-1 font-semibold text-nowrap"
className="md:text-gray-600 md:hover:text-black md:dark:text-white p-1 font-semibold text-nowrap"
to={route.path ?? ""}
style={({ isActive }) => (isActive ? activeStyle : {})}
>
Expand Down

0 comments on commit d5ba795

Please sign in to comment.