Spaces:
Sleeping
Sleeping
File size: 738 Bytes
ecef9b0 | 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 38 39 40 41 42 43 44 45 46 | .dashboard-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-bottom: 2rem;
}
.stat-card {
padding: 1.5rem;
display: flex;
align-items: center;
gap: 1.5rem;
}
.stat-icon {
width: 48px;
height: 48px;
border-radius: 12px;
background: rgba(124, 58, 237, 0.1);
color: var(--primary);
display: flex;
align-items: center;
justify-content: center;
}
.stat-info h4 {
color: var(--text-muted);
font-size: 0.9rem;
margin-bottom: 0.25rem;
}
.stat-info p {
font-size: 1.5rem;
font-weight: 700;
}
.quick-actions {
display: flex;
gap: 1rem;
margin-top: 2rem;
}
.quick-actions .btn {
flex: 1;
}
|