mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +00:00
25 lines
416 B
SCSS
25 lines
416 B
SCSS
/**
|
|
* CreateProjectForm Component Styles
|
|
*/
|
|
|
|
.form {
|
|
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);
|
|
}
|
|
|
|
.title {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
color: var(--mat-sys-on-surface);
|
|
margin: 0 0 16px;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
gap: 12px;
|
|
margin-top: 16px;
|
|
}
|