aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_modals/alert-dialog/alert-dialog.component.html
blob: 82365193e07ba5281c65726c646b685aa93e925c (plain) (blame)
1
2
3
4
5
6
7
<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)="onOkClick()" style="background-color: lightgray;">OK</button>
</div>