Skip to content

Commit

Permalink
chore: add :hover & :active to navlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
climaxmba committed Dec 31, 2024
1 parent 8b238aa commit a5096c3
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/app/components/navbar/navbar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,15 @@
color: hsl(var(--white));
font-size: 25px;
text-decoration: none;
transition: all ease-in 0.3s;

&:hover {
background-color: hsl(var(--dark-blue));
}

&:active {
background-color: hsl(var(--light-blue));
}
}

.hamburger,
Expand Down Expand Up @@ -236,5 +245,13 @@
color: hsl(var(--blue));
text-decoration: none;
line-height: 14.09px;

&:hover {
color: hsl(var(--light-blue));
}

&:active {
color: hsl(var(--dark-blue));
}
}
}

0 comments on commit a5096c3

Please sign in to comment.