mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
22 lines
441 B
SCSS
22 lines
441 B
SCSS
/**
|
|
* StatsGrid Component Styles
|
|
*/
|
|
|
|
.statsGrid {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 24px;
|
|
padding: 16px 24px;
|
|
background: linear-gradient(135deg, var(--mat-sys-primary-container) 0%, var(--mat-sys-secondary-container) 100%);
|
|
border-radius: var(--mat-sys-corner-large);
|
|
margin-bottom: 24px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.divider {
|
|
width: 1px;
|
|
height: 40px;
|
|
background: var(--mat-sys-outline-variant);
|
|
margin: 0 8px;
|
|
}
|