Files
supabase/apps/www/styles/animations.module.css
Francesco Sansalvadore 6422599684 animate on scroll
2023-05-29 22:27:13 +02:00

13 lines
234 B
CSS

.appear-from-bottom {
opacity: 0;
transform: translate3d(0, 10px, 0);
animation: animateIn 1s cubic-bezier(0.25, 0.25, 0, 1) 0.1s both;
}
@keyframes animateIn {
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}