parsley/app/javascript/styles/_transitions.scss

22 lines
385 B
SCSS
Raw Normal View History

2018-09-05 17:49:21 -05:00
.fade-enter-active, .fade-leave-active {
transition: opacity .5s, max-height .5s;
max-height: 300px;
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
opacity: 0;
max-height: 0;
}
.expand-enter-active,
.expand-leave-active {
2018-09-13 14:51:41 -05:00
// transition: height .5s ease-in-out;
// overflow: hidden;
2018-09-05 17:49:21 -05:00
}
2018-09-12 17:17:15 -05:00
.list-item-move-move {
transition: transform 0.25s;
}