This repository has been archived on 2021-02-20. You can view files and clone it, but cannot push or open issues or pull requests.
shapez.io/src/css/animations.scss

20 lines
357 B
SCSS
Raw Normal View History

@each $animName in ("changeAnimEven", "changeAnimOdd") {
@keyframes #{$animName} {
0% {
transform: scale(1, 1);
}
50% {
transform: scale(1.03, 1.03);
}
2020-05-09 16:45:23 +02:00
100% {
transform: scale(1, 1);
}
2020-05-09 16:45:23 +02:00
}
.#{$animName} {
animation: $animName 0.2s ease-in-out;
2020-05-09 16:45:23 +02:00
}
}