40 lines
563 B
CSS
40 lines
563 B
CSS
.loading-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100px;
|
|
}
|
|
|
|
mat-form-field {
|
|
width: 100%;
|
|
}
|
|
|
|
mat-dialog-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.checkbox-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.selected-list ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.selected-item {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 8px;
|
|
border-bottom: 1px solid #ccc;
|
|
}
|
|
|
|
.selected-item button {
|
|
margin-left: 10px;
|
|
}
|