mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
98 lines
1.7 KiB
SCSS
98 lines
1.7 KiB
SCSS
/**
|
|
* Workspace Page - Material Design 3
|
|
* Scoped styles for workspace pages
|
|
*/
|
|
|
|
.workspace {
|
|
padding: 24px;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.pageHeader {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin: 24px 0 32px;
|
|
padding-bottom: 24px;
|
|
border-bottom: 1px solid var(--mat-sys-outline-variant);
|
|
}
|
|
|
|
.pageHeaderContent {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.pageTitle {
|
|
font-size: 1.75rem;
|
|
font-weight: 500;
|
|
color: var(--mat-sys-on-surface);
|
|
margin: 0;
|
|
letter-spacing: -0.5px;
|
|
}
|
|
|
|
.pageSubtitle {
|
|
font-size: 0.95rem;
|
|
color: var(--mat-sys-on-surface-variant);
|
|
margin: 0;
|
|
}
|
|
|
|
.section {
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.sectionHeader {
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
color: var(--mat-sys-on-surface);
|
|
margin: 0 0 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
|
gap: 24px;
|
|
}
|
|
|
|
.loading {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 64px 0;
|
|
gap: 16px;
|
|
}
|
|
|
|
.emptyState {
|
|
text-align: center;
|
|
padding: 48px 32px;
|
|
background: var(--mat-sys-surface-container);
|
|
border-radius: var(--mat-sys-corner-large);
|
|
color: var(--mat-sys-on-surface-variant);
|
|
}
|
|
|
|
.createForm {
|
|
background: var(--mat-sys-surface-container);
|
|
border-radius: var(--mat-sys-corner-large);
|
|
padding: 24px;
|
|
margin-bottom: 24px;
|
|
border: 1px solid var(--mat-sys-outline-variant);
|
|
}
|
|
|
|
.formTitle {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
color: var(--mat-sys-on-surface);
|
|
margin: 0 0 16px;
|
|
}
|
|
|
|
.formActions {
|
|
display: flex;
|
|
gap: 12px;
|
|
margin-top: 16px;
|
|
}
|