Skip to content

Commit

Permalink
Merge pull request #35 from scesi/feature/hamburger_menu
Browse files Browse the repository at this point in the history
update: menu animation responsive
  • Loading branch information
devferx authored Jun 6, 2024
2 parents 6214729 + b1e8a1e commit db323b8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/Navbar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,15 @@ import Close from './icons/CloseIcon.astro';
.icons #close-icon {
display: none;
}
.navegation::after {
display: none;
}
.navegation {
transition: transform 0.3s ease-in-out;
}
.navegation:hover {
transform: scale(1.1);
}

#check:checked ~ .icons #close-icon {
display: block;
Expand Down

0 comments on commit db323b8

Please sign in to comment.