Skip to content

Commit

Permalink
Just removed code for underline hover effect
Browse files Browse the repository at this point in the history
  • Loading branch information
Nevin-Thomas committed Jul 24, 2024
1 parent 4e0dd8f commit c2a7768
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions gnd-app/src/app/app.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,5 @@
font-size: 17px;
}

.topnav a {
text-decoration: none;
position: relative;
display: inline-block;
}

.topnav a::after {
content: '';
position: absolute;
width: 100%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background-color: #8EBA12;
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}

.topnav a:hover::after {
transform: scaleX(1);
transform-origin: bottom left;
height: 6px;
}

0 comments on commit c2a7768

Please sign in to comment.