diff options
author | Eric Eastwood <contact@ericeastwood.com> | 2017-10-30 04:36:20 -0400 |
---|---|---|
committer | Eric Eastwood <contact@ericeastwood.com> | 2017-10-30 04:36:25 -0400 |
commit | e635d0b5c1685291c81b742d8120da13c1d1693e (patch) | |
tree | e73c6ed113aa3003bb7744cd4ad98da2ea5dc21d /app/assets | |
parent | a1aa4f00c27afdd3faf5a551b24bfe1555533a4d (diff) | |
download | gitlab-ce-e635d0b5c1685291c81b742d8120da13c1d1693e.tar.gz |
Fix autodevops graphic gears spinning based on physics39513-fix-gears-spinning-physically
Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/39513
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/framework/animations.scss | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/animations.scss b/app/assets/stylesheets/framework/animations.scss index 81439c0d2fe..1b944831082 100644 --- a/app/assets/stylesheets/framework/animations.scss +++ b/app/assets/stylesheets/framework/animations.scss @@ -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, |