blob: 160f62519408c291a301d59cf226c7b3ce9507c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@import "~@/assets/scss/theme.scss";
// === Transitions for Vue
.flex-expand-enter-active, .flex-expand-leave-active {
transition: max-height $transition-flex-expand linear;
}
.flex-expand-enter, .flex-expand-leave-to {
max-height: 0%;
}
.flex-expand-enter-to, .flex-expand-leave {
max-height: 100%;
}
|