Make animations go 4x faster by default.

Related: https://github.com/Requarks/wiki/discussions/3436
pull/4730/head
Billy Tetrud 3 years ago committed by GitHub
parent 112d070730
commit ceeb40c254
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -9,8 +9,8 @@
*/
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-duration: 250ms;
animation-duration: 250ms;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
&.infinite {
@ -18,12 +18,12 @@
animation-iteration-count: infinite;
}
&.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-duration: 500ms;
animation-duration: 500ms;
}
&.flipOutX, &.flipOutY, &.bounceIn, &.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
-webkit-animation-duration: 150ms;
animation-duration: 150ms;
}
}
@ -3505,4 +3505,4 @@
.spin {
-webkit-animation-name: spin;
animation-name: spin;
}
}

Loading…
Cancel
Save