From 56edc0174b7452250ffca439b3d370fd88cafecd Mon Sep 17 00:00:00 2001 From: Brett Spaulding Date: Tue, 13 Jun 2023 01:44:25 -0500 Subject: [PATCH] [IMP] better spinner --- static/css/style.css | 14 ++++++++++++++ templates/base.html | 8 ++++---- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/static/css/style.css b/static/css/style.css index 14191f4..baa07a4 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -93,4 +93,18 @@ a { .logo { width: 100%; +} + +.icn-spinner { + animation: spin-animation 0.9s infinite; + display: inline-block; +} + +@keyframes spin-animation { + 0% { + transform: rotate(0deg); + } + 100% { + transform: rotate(359deg); + } } \ No newline at end of file diff --git a/templates/base.html b/templates/base.html index 91ff3b7..d7863c6 100644 --- a/templates/base.html +++ b/templates/base.html @@ -18,8 +18,8 @@
-
- Loading... +
+
@@ -34,7 +34,7 @@ @@ -93,7 +93,7 @@ crossorigin="anonymous">