Chore: Removed Mat Card from everywhere.

Chore: Removed the Toaster Service.
Chore: Updated to Material Theme 3
This commit is contained in:
2025-07-11 11:30:35 +00:00
parent 5c1c474e93
commit 88a1572747
117 changed files with 2895 additions and 3236 deletions

View File

@ -1,30 +1,23 @@
<mat-card class="flex-auto lg:max-w-[50%]">
<mat-card-header>
<mat-card-title>Header / Footer</mat-card-title>
</mat-card-header>
<mat-card-content>
<form [formGroup]="form" class="flex flex-col">
<div class="row-container">
<mat-form-field class="flex-auto">
<mat-label>Header / Footer</mat-label>
<mat-select formControlName="id" (selectionChange)="show($event)">
@for (s of list; track s) {
<mat-option [value]="s.id">
{{ s.name }}
</mat-option>
}
</mat-select>
</mat-form-field>
</div>
<mat-form-field>
<mat-label>Text</mat-label>
<textarea matInput matAutosizeMinRows="5" formControlName="text"></textarea>
</mat-form-field>
<form [formGroup]="form" class="flex flex-col">
<div class="row-container">
<mat-form-field class="flex-auto">
<mat-label>Header / Footer</mat-label>
<mat-select formControlName="id" (selectionChange)="show($event)">
@for (s of list; track s) {
<mat-option [value]="s.id">
{{ s.name }}
</mat-option>
}
</mat-select>
</mat-form-field>
</div>
<mat-form-field>
<mat-label>Text</mat-label>
<textarea matInput matAutosizeMinRows="5" formControlName="text"></textarea>
</mat-form-field>
<mat-divider></mat-divider>
</form>
</mat-card-content>
<mat-card-actions>
<button mat-raised-button color="primary" (click)="save()">Save</button>
</mat-card-actions>
</mat-card>
<mat-divider></mat-divider>
</form>
<div class="row-container">
<button mat-raised-button color="primary" (click)="save()">Save</button>
</div>