35 lines
412 B
SCSS
35 lines
412 B
SCSS
#upper-bar {
|
|
display: flex;
|
|
}
|
|
|
|
mat-form-field {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
button[mat-icon-button] {
|
|
margin-left: 4pt;
|
|
margin-right: 4pt;
|
|
margin-top: 4pt;
|
|
}
|
|
|
|
.non-editable {
|
|
color: gray;
|
|
font-style: italic;
|
|
}
|
|
|
|
.mainc {
|
|
height: 100%;
|
|
position: relative;
|
|
}
|
|
|
|
.spinner {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|