# HG changeset patch # User Goffi # Date 1606475639 -3600 # Node ID 7a4bd6de6a56ceeda661df7d8d086231bfc9d392 # Parent 829d87a70136635cff2f23cd8ba35c1424441e71 bulma (css): add missing keyframe for `spin` animation diff -r 829d87a70136 -r 7a4bd6de6a56 sat_templates/templates/bulma/static/styles.css --- 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); + } +}