mirror of
https://github.com/supabase/supabase.git
synced 2026-05-08 18:00:20 -04:00
13 lines
231 B
CSS
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);
|
|
}
|
|
}
|