35 lines
994 B
HTML

<mat-card class="confirm-card mat-elevation-z">
<mat-card-header>
<mat-card-title
class="card-header title"
cdkDrag
cdkDragRootElement=".cdk-overlay-pane"
cdkDragHandle
>
<span *ngIf="data.notice.topYn">
[{{ 'notice.important' | translate }}]
</span>
{{ data.notice.title }}
</mat-card-title>
<button class="icon-button btn-dialog-close" (click)="onClickConfirm()">
<i class="mdi mdi-window-close"></i>
</button>
</mat-card-header>
<mat-card-content>
<div>
{{ data.notice.regDate }}
</div>
<perfect-scrollbar>
<p
[innerHTML]="data.notice.content | linefeedtohtml | linky"
class="contnets"
></p>
</perfect-scrollbar>
</mat-card-content>
<mat-card-actions class="button-form flex-row">
<button mat-flat-button (click)="onClickConfirm()" class="mat-primary">
{{ 'common.messages.confirm' | translate }}
</button>
</mat-card-actions>
</mat-card>