feat: add slideDown animation for upward-flipping popovers

This commit is contained in:
Jannis Braun
2026-03-21 18:20:02 +01:00
parent 3300ce8d5c
commit 90d702338d
+10
View File
@@ -325,6 +325,16 @@
animation: slideUp 0.15s ease-out;
}
/* Slides into place from above — used for popovers that open upward */
@keyframes slideDown {
from { transform: translateY(-10px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
.animate-slide-down {
animation: slideDown 0.15s ease-out;
}
@keyframes typingFadeIn {
from { transform: translateY(4px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }