feat: add AppSelect custom dropdown component

This commit is contained in:
Your Name
2026-02-17 22:22:43 +02:00
parent 0b04e5016e
commit 19f0813d2a
2 changed files with 285 additions and 0 deletions

View File

@@ -119,6 +119,22 @@
animation: modal-enter 200ms ease-out;
}
/* Dropdown animations */
@keyframes dropdown-enter {
from {
opacity: 0;
transform: translateY(-4px) scale(0.98);
}
to {
opacity: 1;
transform: translateY(0) scale(1);
}
}
.animate-dropdown-enter {
animation: dropdown-enter 150ms ease-out;
}
/* Toast animations */
@keyframes toast-enter {
from {