Files
vue-flow/docs/components/examples/transition/style.css
T
2022-10-07 23:49:03 +02:00

10 lines
129 B
CSS

.fade-enter-active,
.fade-leave-active {
transition: opacity 300ms ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}