about summary refs log tree commit diff
path: root/web
diff options
context:
space:
mode:
Diffstat (limited to 'web')
-rw-r--r--web/index.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/web/index.html b/web/index.html
index 7df097f22..06d00dec9 100644
--- a/web/index.html
+++ b/web/index.html
@@ -224,6 +224,21 @@
       .nativeDropdown-item:focus {
         outline: none;
       }
+
+      /* Spinner component */
+      @keyframes rotate {
+        0% {
+          transform: rotate(0deg);
+        }
+        100% {
+          transform: rotate(360deg);
+        }
+      }
+      .rotate-500ms {
+        position: absolute;
+        inset:0;
+        animation: rotate 500ms linear infinite;
+      }
     </style>
   </head>