mirror of
https://github.com/prymitive/karma
synced 2026-05-13 03:56:59 +00:00
Fade on mount wasn't working because it was placed at the wrong level. Animate group moves around the grid.
18 lines
365 B
CSS
18 lines
365 B
CSS
.components-animation-fade-appear,
|
|
.components-animation-fade-enter {
|
|
opacity: 0.01;
|
|
}
|
|
.components-animation-fade-appear-active,
|
|
.components-animation-fade-enter-active {
|
|
opacity: 1;
|
|
transition: all 0.3s ease-in;
|
|
}
|
|
|
|
.components-animation-fade-exit {
|
|
opacity: 1;
|
|
}
|
|
.components-animation-fade-exit-active {
|
|
opacity: 0.01;
|
|
transition: all 0.3s ease-out;
|
|
}
|