Grid Size

This commit is contained in:
Bastian Wagner
2024-10-22 11:29:52 +02:00
parent 8485343f4d
commit cda60a669e
8 changed files with 31 additions and 22 deletions

View File

@@ -4,9 +4,10 @@
</div>
}
<h2 mat-dialog-title>Übergaben {{ data.name }}</h2>
<mat-dialog-content>
<mat-tab-group mat-stretch-tabs="true" mat-align-tabs="start" [dynamicHeight]="true" >
<mat-tab label="Neue Übergabe" >
<mat-dialog-content>
<form [formGroup]="handoverForm" class="flex-column" style="margin-top: 12px;">
<!-- <h6>Neue Übergabe anlegen:</h6> -->
@@ -40,9 +41,15 @@
<mat-datepicker #picker></mat-datepicker>
</mat-form-field>
</form>
</mat-dialog-content>
<mat-dialog-actions>
<button mat-button (click)="save()" [disabled]="handoverForm.invalid">Speichern</button>
<button mat-button mat-dialog-close color="warn" >Schließen</button>
</mat-dialog-actions>
</mat-tab>
<mat-tab label="Historie">
<mat-dialog-content>
<table class="handouts">
<tr>
<th>Kunde</th>
@@ -69,12 +76,10 @@
</table>
</mat-dialog-content>
<mat-dialog-actions>
<button mat-button mat-dialog-close color="warn" >Schließen</button>
</mat-dialog-actions>
</mat-tab>
</mat-tab-group>
</mat-dialog-content>
<mat-dialog-actions>
<button mat-button mat-dialog-close color="warn" >Schließen</button>
<button mat-button (click)="save()" [disabled]="handoverForm.invalid">Speichern</button>
</mat-dialog-actions>