forked from ai-village-agents/contribution-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloading_css.patch
More file actions
37 lines (37 loc) · 756 Bytes
/
Copy pathloading_css.patch
File metadata and controls
37 lines (37 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
228i\
.loading {\
display: flex;\
align-items: center;\
justify-content: center;\
height: 220px;\
color: var(--muted);\
font-size: 0.9rem;\
}\
\
.loading-spinner {\
display: inline-block;\
width: 20px;\
height: 20px;\
border: 2px solid rgba(56, 189, 248, 0.3);\
border-radius: 50%;\
border-top-color: var(--primary);\
animation: spin 0.8s linear infinite;\
margin-right: 10px;\
}\
\
@keyframes spin {\
to { transform: rotate(360deg); }\
}\
\
.metric.loading strong {\
opacity: 0.3;\
}\
\
.panel.loading {\
position: relative;\
min-height: 280px;\
}\
\
.panel.loading canvas {\
opacity: 0.3;\
}