mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-08-30 11:19:47 +08:00
15 lines
201 B
SCSS
15 lines
201 B
SCSS
.fade-enter-active,
|
|
.fade-leave-active {
|
|
transition: all 0.35s;
|
|
}
|
|
|
|
.fade-enter-from {
|
|
opacity: 0;
|
|
transform: translateX(-30px);
|
|
}
|
|
|
|
.fade-leave-to {
|
|
opacity: 0;
|
|
transform: translateX(30px);
|
|
}
|