fix: stagger animation breaking position:fixed overlays

The fadeSlideIn animation used transform:translateY which creates a
new containing block, trapping position:fixed children (EntitySelect).
Switched to the CSS translate property which doesn't create a
containing block.
This commit is contained in:
2026-03-22 20:49:33 +03:00
parent bd254de7a9
commit f9a4ccf725
+2 -2
View File
@@ -132,8 +132,8 @@ a:focus-visible {
/* Animations */
@keyframes fadeSlideIn {
from { opacity: 0; transform: translateY(12px); }
to { opacity: 1; transform: translateY(0); }
from { opacity: 0; translate: 0 12px; }
to { opacity: 1; translate: none; }
}
@keyframes shimmer {