blob: 572e8c4c239b337ae7fe849645b7241214b5d1af (
plain) (
blame)
1
2
3
4
5
6
7
8
|
<h2 mat-dialog-title class="text-muted">{{data.title}}</h2>
<div mat-dialog-content class="mt-4" style="color: rgb(81, 76, 76);">
{{data.message}}
</div>
<div mat-dialog-actions class="d-flex justify-content-center mt-4">
<button mat-button cdkFocusInitial (click)="onYesClick()" class="btn-lg" style="background-color: #003459; color:white;">Da</button>
<button mat-button cdkFocusInitial (click)="onNoClick()" class="btn-lg" style="background-color: lightgray;">Ne</button>
</div>
|