2022-04-05 11:50:15 +08:00

16 lines
237 B
SCSS

.fade-slide-y {
&-enter-active {
transition: all 0.3s ease;
}
&-leave-active {
transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
}
&-enter-from,
&-leave-to {
transform: translateY(10px);
opacity: 0;
}
}