fix: prevent post card flickering by using animation-fill-mode both
All checks were successful
Deploy Theme / deploy (push) Successful in 13s

This commit is contained in:
2026-02-22 09:32:37 +01:00
parent 84f9761a35
commit e15aafc3aa

View File

@@ -219,8 +219,12 @@
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-fadeInUp {
animation: fadeInUp 0.5s ease-out forwards;
animation: fadeInUp 0.5s ease-out both;
}