Mercurial > libervia-templates
diff sat_templates/templates/bulma/static/styles.css @ 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 |
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); + } +}