ui feedback updates

This commit is contained in:
Cyril Joseph 2025-07-27 22:24:34 -03:00
parent 534f693a50
commit 127011b416
4 changed files with 17 additions and 1 deletions

View File

@ -28,6 +28,9 @@
display: flex; display: flex;
gap: 24px; gap: 24px;
margin-bottom: 12px; margin-bottom: 12px;
border: 1px solid;
border-radius: 4px;
padding: 20px;
@media (max-width: 768px) { @media (max-width: 768px) {
flex-direction: column; flex-direction: column;

View File

@ -19,6 +19,7 @@
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
gap: 8px; gap: 8px;
background-color: var(--mat-sys-primary);
} }
.footer-links { .footer-links {

View File

@ -90,7 +90,7 @@
<ng-container matColumnDef="carnetValue"> <ng-container matColumnDef="carnetValue">
<th mat-header-cell *matHeaderCellDef mat-sort-header>Carnet Value</th> <th mat-header-cell *matHeaderCellDef mat-sort-header>Carnet Value</th>
<td mat-cell *matCellDef="let item">{{ item.carnetValue }}</td> <td mat-cell *matCellDef="let item">{{ item.carnetValue | currency}}</td>
</ng-container> </ng-container>
<ng-container matColumnDef="issueDate"> <ng-container matColumnDef="issueDate">

View File

@ -99,4 +99,16 @@ body {
opacity: 0; opacity: 0;
} }
} }
/* Table */
@include mat.table-overrides((header-headline-color:var(--mat-sys-on-primary),
));
.mat-mdc-table .mat-mdc-header-cell {
background: var(--mat-sys-primary);
}
/* Sort */
@include mat.sort-overrides((arrow-color: var(--mat-sys-on-primary),
));
} }