35 lines
450 B
SCSS
35 lines
450 B
SCSS
/* Common styles for all admin components */
|
|
|
|
header {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.spacer {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
}
|
|
|
|
mat-card {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* Common styles for all admin edit dialogs */
|
|
|
|
mat-dialog-content form {
|
|
padding-top: 20px;
|
|
}
|
|
|
|
mat-form-field {
|
|
width: 100%;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
mat-checkbox {
|
|
display: block;
|
|
margin-bottom: 16px;
|
|
} |