Adjust table style and move elements

This commit is contained in:
Peter Rossa
2023-05-23 20:04:29 +02:00
parent 67c10d25c2
commit 740c7fc463
2 changed files with 7 additions and 4 deletions

View File

@@ -1,12 +1,10 @@
<div class="content">
<div class="content-header">
content header
<p>dashboard works!</p>
<button mat-raised-button color="primary" (click)="addMeterData()">Neuer Eintrag</button>
</div>
<button mat-raised-button color="primary" (click)="addMeterData()">addMeterData</button>
<mat-grid-list cols="2" rowHeight="400px">
<mat-grid-list cols="2" rowHeight="500px">
<mat-grid-tile>
<app-meter-data-wrapper class="full-width" [meterData]="meterDataEnergyDTO"
[type]="usageTypes.ENERGY"></app-meter-data-wrapper>

View File

@@ -70,3 +70,8 @@ button {
justify-content: end;
}
}
// mat-table
.mat-mdc-table .mat-mdc-row {
height: 42px;
}