Merge pull request #381 from pateljannat/dashboard-stats

This commit is contained in:
Jannat Patel
2022-09-29 09:04:15 +05:30
committed by GitHub
8 changed files with 105 additions and 1 deletions

View File

@@ -1716,3 +1716,26 @@ li {
.timestamp {
font-size: var(--text-xs);
}
.stats-parent {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
grid-gap: 2rem;
}
.stats-label {
color: var(--text-muted);
font-weight: bold;
}
.stats-value {
color: var(--gray-900);
font-weight: 600;
font-size: 2rem;
}
.stats-card {
display: flex;
flex-direction: column;
align-items: center;
}