use the primary color (blue) for save buttons instead of the Amazon orange

This commit is contained in:
2024-10-13 19:42:39 +02:00
parent 768962aa43
commit 64725de8b9
4 changed files with 11 additions and 10 deletions

View File

@@ -85,7 +85,7 @@
<div class="toolbar">
<button mat-button (click)="addText()">Add Text</button>
<button mat-button (click)="addPlot()">Add Plot</button>
<button class="save-button" mat-button (click)="save()" [disabled]="!isDirty()">Save</button>
<button class="save-button" mat-flat-button (click)="save()" [disabled]="!isDirty()">Save</button>
<div id="filter-date-range">
Date range: <app-date-picker #datePicker (dateValueSelected)="updateDateRange($event)" ></app-date-picker>
</div>