32 lines
632 B
SCSS
32 lines
632 B
SCSS
:host {
|
|
padding: 8pt;
|
|
display: block;
|
|
}
|
|
|
|
form {
|
|
margin-top: 1ch !important;
|
|
display: flex;
|
|
grid-auto-flow: column;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
column-gap: 3ch;
|
|
div {
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
grid-template-rows: repeat(5, 1fr);
|
|
align-items: center;
|
|
button {
|
|
align-self: stretch;
|
|
justify-self: stretch;
|
|
height: auto;
|
|
margin-bottom: 1lh;
|
|
}
|
|
}
|
|
}
|
|
|
|
mat-dialog-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
} |