summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-10-20 02:55:29 +0000
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-10-20 02:55:29 +0000
commita4416c394150724b4162083a2101d36b22410228 (patch)
tree054b073446d1db80d4d52c676fda4ffe5acc688b /app/assets/stylesheets
parentbd39b441a1525b5cbc9b69170b3d0748c51dd851 (diff)
parentea666921a56a63f4742c173c1353e178518495b3 (diff)
downloadgitlab-ce-a4416c394150724b4162083a2101d36b22410228.tar.gz
Merge branch 'animate-auto-devops' into 'master'
Animate auto devops graphic Closes #39242 See merge request gitlab-org/gitlab-ce!14931
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r--app/assets/stylesheets/framework/animations.scss11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/animations.scss b/app/assets/stylesheets/framework/animations.scss
index 374988bb590..81439c0d2fe 100644
--- a/app/assets/stylesheets/framework/animations.scss
+++ b/app/assets/stylesheets/framework/animations.scss
@@ -23,6 +23,11 @@
@include webkit-prefix(animation-duration, 2s);
}
+ &.spin {
+ transform-origin: center;
+ animation: spin 4s linear infinite;
+ }
+
&.flipOutX,
&.flipOutY,
&.bounceIn,
@@ -271,3 +276,9 @@ a {
transform: translateX(468px);
}
}
+
+@keyframes spin {
+ 100% {
+ transform: rotate(360deg);
+ }
+}