diff --git a/static/index.html b/static/index.html index fc4ede08..808d10c5 100644 --- a/static/index.html +++ b/static/index.html @@ -4,6 +4,7 @@ + @@ -122,7 +123,6 @@
@@ -194,6 +184,5 @@ - diff --git a/static/styles/rewards/claim-table.css b/static/styles/rewards/claim-table.css index b090f2d7..1b70354d 100644 --- a/static/styles/rewards/claim-table.css +++ b/static/styles/rewards/claim-table.css @@ -366,3 +366,14 @@ table th { content: ""; } } +@keyframes rotate { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} +#claim-loader > svg { + animation: rotate 1s linear infinite; +} diff --git a/static/styles/toast.css b/static/styles/toast.css index 03582f7e..2f740bf3 100644 --- a/static/styles/toast.css +++ b/static/styles/toast.css @@ -36,7 +36,7 @@ padding: 24px; margin: 12px; justify-content: space-between; - animation: show_toast 0.5s ease-in-out; + animation: show-toast 0.5s ease-in-out; /* border: 1px solid #80808020; */ border: 1px solid var(--border-color); /* backdrop-filter: blur(24px); */ @@ -44,7 +44,7 @@ background-color: var(--background-color-default); } -@keyframes show_toast { +@keyframes show-toast { 0% { opacity: 0; }