Commit 5230f3de authored by Clement Ho's avatar Clement Ho

Merge branch '39513-fix-gears-spinning-physically' into 'master'

Fix Auto DevOps graphic gears spinning based on physics

Closes #39513

See merge request gitlab-org/gitlab-ce!15076
parents 311025ed e635d0b5
......@@ -23,11 +23,16 @@
@include webkit-prefix(animation-duration, 2s);
}
&.spin {
&.spin-cw {
transform-origin: center;
animation: spin 4s linear infinite;
}
&.spin-ccw {
transform-origin: center;
animation: spin 4s linear infinite reverse;
}
&.flipOutX,
&.flipOutY,
&.bounceIn,
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment