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