changeset 293:7a4bd6de6a56

bulma (css): add missing keyframe for `spin` animation
author Goffi <goffi@goffi.org>
date Fri, 27 Nov 2020 12:13:59 +0100
parents 829d87a70136
children a587d664f62c
files sat_templates/templates/bulma/static/styles.css
diffstat 1 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/sat_templates/templates/bulma/static/styles.css	Mon Sep 28 17:28:47 2020 +0200
+++ b/sat_templates/templates/bulma/static/styles.css	Fri Nov 27 12:13:59 2020 +0100
@@ -536,3 +536,13 @@
   animation: spin 2s infinite linear;
   display: inline-block;
 }
+
+@keyframes spin {
+  0% {
+    transform: rotate(0deg);
+  }
+
+  100% {
+    transform: rotate(359deg);
+  }
+}