Files
supabase/apps/www/components/Hero/hero.module.css
Francesco Sansalvadore 452ad6c7d9 speed up fade-in animation
2023-07-10 13:32:12 +02:00

13 lines
231 B
CSS

.hero-text {
opacity: 0;
transform: translate3d(0, 10px, 0);
animation: animateText 0.2s cubic-bezier(0.25, 0.25, 0, 1) 0.1s both;
}
@keyframes animateText {
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}