RED-9578: fixed styles.

This commit is contained in:
Nicoleta Panaghiu 2024-10-02 14:32:57 +03:00
parent aa9de3c369
commit fcf159d091
3 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,8 @@
<div [ngStyle]="gridConfig()" class="table">
@for (column of _columns(); track column.label) {
<div [ngClass]="{ hide: !!column.hide }" class="col cell">{{ column.label }}</div>
<div [ngClass]="{ hide: !!column.hide }" class="col cell">
<label>{{ column.label }}</label>
</div>
}
@for (row of _data(); track $index) {
@for (cell of row; track cell.label) {

View File

@ -12,6 +12,11 @@
top: 0;
z-index: 1;
background: white;
label {
opacity: 0.7;
font-weight: normal;
}
}
.cell {

View File

@ -2,10 +2,10 @@
:host {
height: 250px;
margin-bottom: 16px;
}
.scrollable {
margin-bottom: 8px;
overflow-y: auto;
max-height: 240px;
@include common-mixins.scroll-bar;