mirror of
https://github.com/tobspr-games/shapez.io.git
synced 2026-01-27 06:50:30 -08:00
19 lines
357 B
SCSS
19 lines
357 B
SCSS
@each $animName in ("changeAnimEven", "changeAnimOdd") {
|
|
@keyframes #{$animName} {
|
|
0% {
|
|
transform: scale(1, 1);
|
|
}
|
|
|
|
50% {
|
|
transform: scale(1.03, 1.03);
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1, 1);
|
|
}
|
|
}
|
|
|
|
.#{$animName} {
|
|
animation: $animName 0.2s ease-in-out;
|
|
}
|
|
}
|