Files
karma/ui/src/Components/Animations/MountFade/index.css
Łukasz Mierzwa 5836d72513 fix(ui): fix grid animations
Fade on mount wasn't working because it was placed at the wrong level.
Animate group moves around the grid.
2019-04-13 10:45:24 +01:00

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;
}