fix: restore hero animations in tailwind v4 on 2.2.95
Some checks failed
Build & Deploy / 🧪 QA (push) Has been cancelled
Build & Deploy / 🏗️ Build (push) Has been cancelled
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
Build & Deploy / 🔍 Prepare (push) Has been cancelled

This commit is contained in:
2026-07-03 12:21:43 +02:00
parent 73886406a4
commit 6fb46278e0

View File

@@ -88,7 +88,6 @@
} }
/* trigger rebuild */ /* trigger rebuild */
@layer utilities {
@keyframes hero-fade-in-up { @keyframes hero-fade-in-up {
from { from {
opacity: 0; opacity: 0;
@@ -100,12 +99,10 @@
} }
} }
.animate-hero-fade-in-up { @utility animate-hero-fade-in-up {
animation: hero-fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; animation: hero-fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
} }
}
@layer utilities {
@keyframes hero-zoom-out { @keyframes hero-zoom-out {
from { from {
transform: scale(1.05); transform: scale(1.05);
@@ -115,7 +112,6 @@
} }
} }
.animate-hero-zoom-out { @utility animate-hero-zoom-out {
animation: hero-zoom-out 1.5s ease-out forwards; animation: hero-zoom-out 1.5s ease-out forwards;
} }
}