From e15aafc3aabd4746b6f32f2a359e7d962c0d049f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 22 Feb 2026 09:32:37 +0100 Subject: [PATCH] fix: prevent post card flickering by using animation-fill-mode both --- assets/css/tailwind.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/assets/css/tailwind.css b/assets/css/tailwind.css index 0d1ff39..7bb1518 100644 --- a/assets/css/tailwind.css +++ b/assets/css/tailwind.css @@ -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; }