frontend/src/styles/utilities/transitions.scss

15 lines
268 B
SCSS
Raw Permalink Normal View History

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