10 lines
136 B
CSS
10 lines
136 B
CSS
.fade-enter-active,
|
|
.fade-leave-active {
|
|
transition: opacity 0.25s ease-in-out;
|
|
}
|
|
|
|
.fade-enter-from,
|
|
.fade-leave-to {
|
|
opacity: 0;
|
|
}
|