delete dashboards
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user