diff --git a/src/resources/css/animations.css b/src/resources/css/animations.css index 218fe0c..fa45768 100644 --- a/src/resources/css/animations.css +++ b/src/resources/css/animations.css @@ -1,3 +1,11 @@ +.spin { + animation: spin 1.5s linear infinite; +} + +@keyframes spin { + to { transform: rotate(360deg); } +} + /** https://thinkdobecreate.com/articles/css-animating-newly-added-element/ **/ .anim-show {