mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
23 lines
339 B
SCSS
23 lines
339 B
SCSS
/**
|
|
* StatValue Component Styles
|
|
*/
|
|
|
|
.statValue {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.value {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: var(--mat-sys-on-surface);
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.label {
|
|
font-size: 0.75rem;
|
|
color: var(--mat-sys-on-surface-variant);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.5px;
|
|
}
|