11 lines
146 B
SCSS
11 lines
146 B
SCSS
|
//globl transition css
|
||
|
.fade-enter-active,
|
||
|
.fade-leave-active {
|
||
|
transition: opacity 0.28s;
|
||
|
}
|
||
|
|
||
|
.fade-enter,
|
||
|
.fade-leave-active {
|
||
|
opacity: 0;
|
||
|
}
|