Skip to content

Commit

Permalink
Merge pull request anuragverma108#24 from Joy-Agrawal/hovering
Browse files Browse the repository at this point in the history
Fixed Hovering issue anuragverma108#23
  • Loading branch information
anuragverma108 authored May 9, 2024
2 parents ffc2b80 + 4e0cce0 commit a4d0e6f
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,11 @@ body {
transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) { color: var(--old-rose); }
.navbar-link:is(:hover, :focus) {
color: var(--old-rose);
transform: scale(1.05);
transition: 0.3s ease-in-out;
}



Expand Down Expand Up @@ -1210,6 +1214,10 @@ textarea.input-field {
justify-content: space-between;
align-items: center;
}
.footer-link:hover{
transform: scale(1.05);
transition: 0.3s ease-in-out;
}

.footer .logo { margin-block-end: 0; }

Expand Down

0 comments on commit a4d0e6f

Please sign in to comment.