Files
komodo/frontend/src/components/home/Updates/update.module.scss
2023-04-03 01:50:45 -04:00

20 lines
280 B
SCSS

@use "../../../style/colors.scss" as c;
@keyframes Enter {
from {
transform: scaleY(0);
opacity: 0;
}
to {
transform: scaleY(1);
opacity: 1;
}
}
.Update {
padding: 0.75rem;
height: 40px;
transform-origin: top;
animation-name: Enter;
animation-duration: 750ms;
}