Add dropdown transitions

This commit is contained in:
Vagner
2024-10-12 12:55:55 -03:00
parent bdf4e37018
commit 1287a0e9a7
2 changed files with 12 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
.dropdown-enter-active,
.dropdown-leave-active {
transition: all 0.3s ease;
}
.dropdown-enter-from,
.dropdown-leave-to {
opacity: 0;
transform: translateY(-10px);
}