Skip to content

Commit

Permalink
improve menu animation
Browse files Browse the repository at this point in the history
  • Loading branch information
danielzlatanov committed Sep 23, 2024
1 parent 07a568b commit 1abb60f
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/app/core/header/header.component.css
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
.menu-animation {
animation: scaleIn 0.2s ease-in-out;
animation: scaleIn 0.3s;
}

@keyframes scaleIn {
from {
opacity: 0;
transform: scale(0.5);
transform: scale(0.9);
}
to {
opacity: 1;
transform: scale(1);
}
}

.custom-z-ind {
z-index: 99;
}

0 comments on commit 1abb60f

Please sign in to comment.