Skip to content

Commit

Permalink
Fix Navbar Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
erlisakulla committed Oct 17, 2021
1 parent 3d78cf0 commit 86874ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Navbar/Navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
font-weight: 300;
}

.nav-link:after, .nav-link.active:after {
.nav-link:after {
display:block;
content: '';
border-bottom: solid 3px rgb(38 38 38);
transform: scaleX(0);
transition: transform 250ms ease-in-out;
}

.nav-link:not(#resume-btn, .wrapper .nav-link):hover:after, .nav-link.active:after {
.nav-link:not(#resume-btn, .wrapper .nav-link):hover:after {
transform: scaleX(1);
}

Expand Down

0 comments on commit 86874ff

Please sign in to comment.