generated from corrad-software/corrad-af-2024
11 lines
161 B
SCSS
11 lines
161 B
SCSS
// Animation for transition fade
|
|
.fade-enter-active,
|
|
.fade-leave-active {
|
|
transition: opacity 0.3s ease;
|
|
}
|
|
|
|
.fade-enter-from,
|
|
.fade-leave-to {
|
|
opacity: 0;
|
|
}
|