vikunja-frontend/src/styles/transitions.scss

19 lines
278 B
SCSS
Raw Normal View History

.fade-enter-active,
.fade-leave-active {
2019-04-29 21:41:39 +00:00
transition: opacity $transition-duration;
}
.fade-enter-from,
.fade-leave-to {
2019-04-29 21:41:39 +00:00
opacity: 0;
}
.width-enter-active,
.width-leave-active {
2019-04-29 21:41:39 +00:00
transition: width $transition-duration;
}
.width-enter-from,
.width-leave-to {
2019-04-29 21:41:39 +00:00
width: 0;
}