1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2026-03-02 03:39:21 +00:00

Replace gulp-sass with gulp-dart-sass (#1036)

This commit is contained in:
dengr1065
2020-12-25 23:57:57 +02:00
committed by GitHub
parent 9b5811b874
commit b51c0fdbd4
4 changed files with 77 additions and 211 deletions

View File

@@ -1,13 +1,19 @@
@include MakeAnimationWrappedEvenOdd(0.2s ease-in-out, "changeAnim") {
0% {
transform: scale(1, 1);
@each $num in ("changeAnimEven", "changeAnimOdd") {
@keyframes #{$animName} {
0% {
transform: scale(1, 1);
}
50% {
transform: scale(1.03, 1.03);
}
100% {
transform: scale(1, 1);
}
}
50% {
transform: scale(1.03, 1.03);
}
100% {
transform: scale(1, 1);
.#{$animName} {
animation: $animName 0.2s ease-in-out;
}
}