16 lines
565 B
HTML
16 lines
565 B
HTML
<style>
|
|
div[mat-dialog-content] {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1em;
|
|
}
|
|
</style>
|
|
<h1 *ngIf="data.title" mat-dialog-title>{{data.title}}</h1>
|
|
<div mat-dialog-content>
|
|
<img src="assets/img/question-mark-round.svg" class="icon-middle" />
|
|
<div>{{data.text}}</div>
|
|
</div>
|
|
<div mat-dialog-actions align="end">
|
|
<button mat-button mat-dialog-close cdkFocusRegionStart focus>{{data.btnCancelLabel}}</button>
|
|
<button mat-raised-button color="warn" mat-dialog-close (click)="onOkClick()" cdkFocusRegionEnd>{{data.btnOkLabel}}</button>
|
|
</div> |