1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2024-10-27 20:34:29 +00:00
tobspr_shapez.io/src/css/animations.scss
2020-12-29 10:39:52 +01:00

20 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;
}
}