16 lines
No EOL
264 B
Text
16 lines
No EOL
264 B
Text
// Vue transition
|
|
|
|
.fade-transition {
|
|
.transition(opacity @transition-time @ease-in-out);
|
|
}
|
|
.fade-enter, .fade-leave {
|
|
opacity: 0;
|
|
}
|
|
|
|
.height-transition{
|
|
.transition(all @transition-time @ease-in-out);
|
|
}
|
|
|
|
.height-enter, .height-leave {
|
|
height: 0;
|
|
} |