leejinho 3aa1c4db8e # 이슈처리 271
linky 링크시 style 적용.
2020-02-26 11:03:42 +09:00

27 lines
794 B
HTML

<mat-card class="confirm-card mat-elevation-z">
<mat-card-header>
<mat-card-title
cdkDrag
cdkDragRootElement=".cdk-overlay-pane"
cdkDragHandle
>{{ data.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>
<perfect-scrollbar>
<p
[innerHTML]="data.contents | linefeedtohtml | linky"
class="contents"
></p>
</perfect-scrollbar>
</mat-card-content>
<mat-card-actions class="button-form flex-row">
<button mat-stroked-button (click)="onClickConfirm()" class="mat-primary">
{{ 'common.messages.confirm' | translate }}
</button>
</mat-card-actions>
</mat-card>