ikraamkb commited on
Commit
d2e71e9
·
verified ·
1 Parent(s): d961acb

Update static/app.css

Browse files
Files changed (1) hide show
  1. static/app.css +13 -1
static/app.css CHANGED
@@ -16,7 +16,19 @@ html, body {
16
  background-color: rgba(0, 150, 255, 0.1) !important;
17
  border: 2px dashed #1ec9f3 !important;
18
  }
19
-
 
 
 
 
 
 
 
 
 
 
 
 
20
  header {
21
  flex: 0 0 17vh;
22
  display: flex;
 
16
  background-color: rgba(0, 150, 255, 0.1) !important;
17
  border: 2px dashed #1ec9f3 !important;
18
  }
19
+ .loader {
20
+ display: inline-block;
21
+ border: 2px solid #f3f3f3;
22
+ border-top: 2px solid #3b82f6;
23
+ border-radius: 50%;
24
+ width: 16px;
25
+ height: 16px;
26
+ animation: spin 1s linear infinite;
27
+ }
28
+ @keyframes spin {
29
+ 0% { transform: rotate(0deg); }
30
+ 100% { transform: rotate(360deg); }
31
+ }
32
  header {
33
  flex: 0 0 17vh;
34
  display: flex;