forked from github-starred/komodo
20 lines
280 B
SCSS
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;
|
|
} |