mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
31 lines
447 B
SCSS
31 lines
447 B
SCSS
.list-anim-move,
|
|
.list-anim-enter-active,
|
|
.list-anim-leave-active {
|
|
transition: all 250ms ease;
|
|
}
|
|
|
|
.list-anim-enter-from,
|
|
.list-anim-leave-to {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
|
|
.list-anim-leave-active {
|
|
position: absolute;
|
|
width: 100%;
|
|
}
|
|
|
|
.status-anim {
|
|
&-enter-from,
|
|
&-leave-to {
|
|
opacity: 0;
|
|
}
|
|
|
|
&-enter-active {
|
|
transition: all 100ms ease-out;
|
|
}
|
|
|
|
&-leave-active {
|
|
transition: all 100ms ease-out;
|
|
}
|
|
} |