fix: remove skeleton shimmer from dashboard stat cards

This commit is contained in:
dadaloop82
2026-05-06 05:15:44 +00:00
parent 521d8f8e47
commit af9bae3093
3 changed files with 4 additions and 27 deletions
-15
View File
@@ -498,21 +498,6 @@ body {
color: var(--primary);
}
/* Skeleton pulse while stat is loading */
.stat-value.stat-loading {
color: transparent;
background: linear-gradient(90deg, var(--border) 25%, var(--bg-dark, #e2e8f0) 50%, var(--border) 75%);
background-size: 200% 100%;
animation: stat-shimmer 1.2s infinite;
border-radius: 6px;
min-width: 2rem;
display: inline-block;
}
@keyframes stat-shimmer {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}
.stat-label {
font-size: 0.85rem;
color: var(--text-light);