wip
This commit is contained in:
parent
abcf8ee75e
commit
12869e35bf
34 changed files with 1177 additions and 156 deletions
38
PlanTempus.Application/wwwroot/css/quick-stats.css
Normal file
38
PlanTempus.Application/wwwroot/css/quick-stats.css
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
/**
|
||||
* Quick Stats CSS
|
||||
*
|
||||
* Styling for quick stats components in sidebar
|
||||
*/
|
||||
|
||||
/* ===========================================
|
||||
QUICK STATS CONTAINER
|
||||
=========================================== */
|
||||
swp-quick-stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: var(--spacing-3);
|
||||
}
|
||||
|
||||
/* ===========================================
|
||||
QUICK STAT ITEM
|
||||
=========================================== */
|
||||
swp-quick-stat {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--spacing-1);
|
||||
padding: var(--spacing-3);
|
||||
background: var(--color-background-alt);
|
||||
border-radius: var(--radius-md);
|
||||
}
|
||||
|
||||
swp-quick-stat swp-stat-value {
|
||||
font-size: var(--font-size-xl);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
font-family: var(--font-mono);
|
||||
color: var(--color-text);
|
||||
}
|
||||
|
||||
swp-quick-stat swp-stat-label {
|
||||
font-size: var(--font-size-xs);
|
||||
color: var(--color-text-secondary);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue