mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-06-13 13:04:03 +00:00
14 lines
225 B
SCSS
14 lines
225 B
SCSS
|
|
@include MakeAnimationWrappedEvenOdd(0.2s ease-in-out, "changeAnim") {
|
||
|
|
0% {
|
||
|
|
transform: scale(1, 1);
|
||
|
|
}
|
||
|
|
|
||
|
|
50% {
|
||
|
|
transform: scale(1.03, 1.03);
|
||
|
|
}
|
||
|
|
|
||
|
|
100% {
|
||
|
|
transform: scale(1, 1);
|
||
|
|
}
|
||
|
|
}
|