Browse Source

Merge ceeb40c254 into 41d3ba4312

pull/4730/merge
Billy Tetrud 1 month ago
committed by GitHub
parent
commit
c255e52de5
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
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 {
-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