Browse Source

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
commit
ceeb40c254
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions
  1. 14
      client/libs/animate/animate.scss

14
client/libs/animate/animate.scss

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