vikunja-frontend/src/styles/transitions.scss
2021-10-25 16:39:29 +02:00

19 lines
No EOL
278 B
SCSS

.fade-enter-active,
.fade-leave-active {
transition: opacity $transition-duration;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
.width-enter-active,
.width-leave-active {
transition: width $transition-duration;
}
.width-enter-from,
.width-leave-to {
width: 0;
}