Files
karma/ui/src/Styles/Components/_DropdownSlide.scss
2021-05-25 08:53:50 +01:00

28 lines
710 B
SCSS

$duration: 0.15s;
.components-animation-slide-enter,
.components-animation-slide-appear {
opacity: 0;
transform: scale(0.95) translateY(-0.25em);
}
.components-animation-slide-enter-active,
.components-animation-slide-appear-active {
opacity: 1;
transform: scale(1) translateY(0);
transition-property: transform;
transition-duration: $duration;
transition-timing-function: ease-out;
}
.components-animation-slide-exit {
opacity: 1;
transform: scale(1) translateY(0);
}
.components-animation-slide-exit-active {
opacity: 0;
transform: scale(0.95) translateY(-0.25em);
transition-property: opacity, transform;
transition-duration: $duration;
transition-timing-function: ease-out;
}