Logging & Styling

This commit is contained in:
Bastian Wagner
2026-02-16 12:11:30 +01:00
parent 2eafa21baf
commit 9ea2229f5a
29 changed files with 169 additions and 90 deletions

View File

@@ -41,8 +41,8 @@
</form>
</mat-dialog-content>
<mat-dialog-actions>
<button mat-button mat-dialog-close color="warn">Abbrechen</button>
<button (click)="save()" [disabled]="createForm.disabled || createForm.invalid" mat-raised-button color="accent">
<button matButton mat-dialog-close>Abbrechen</button>
<button (click)="save()" [disabled]="createForm.disabled || createForm.invalid" matButton="elevated" class="btn-primary">
<mat-icon>save</mat-icon>
Speichern
</button>

View File

@@ -10,6 +10,6 @@
</mat-dialog-content>
<mat-dialog-actions>
<button mat-button color="warn" [mat-dialog-close]="null">Abbrechen</button>
<button mat-button color="accent" [mat-dialog-close]="selectedCylinders">Übernehmen</button>
<button matButton [mat-dialog-close]="null">Abbrechen</button>
<button matButton [mat-dialog-close]="selectedCylinders">Übernehmen</button>
</mat-dialog-actions>