52 lines
848 B
SCSS
52 lines
848 B
SCSS
@use "@angular/material" as mat;
|
|
|
|
:host {
|
|
display: flex;
|
|
flex-flow: column;
|
|
height: 100%;
|
|
// overflow: auto;
|
|
}
|
|
|
|
.filter-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: start;
|
|
gap: 5vw;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.table-container {
|
|
overflow: auto;
|
|
border: 1px solid var(--mat-sys-outline);
|
|
min-height: 400px;
|
|
}
|
|
|
|
mat-form-field {
|
|
display: inline-block;
|
|
}
|
|
|
|
mat-radio-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.status-filters {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
td {
|
|
border: 1px solid var(--mat-sys-outline-variant);
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.table-row:nth-child(even) {
|
|
background-color: var(--mat-sys-surface-variant);
|
|
}
|
|
|
|
.table-row:nth-child(odd) {
|
|
background-color: var(--mat-sys-surface);
|
|
}
|