gns3-web-ui/src/app/components/notification-box/notification-box.component.html
2020-02-24 11:55:23 +01:00

10 lines
452 B
HTML

<div class="notification-box" [ngClass]="{hidden: !isVisible}">
<mat-progress-bar mode="determinate" [value]="progress"></mat-progress-bar>
<div style="display: flex; height: 102px;">
<div class="content" [ngClass]="{lightTheme: isLightThemeEnabled}">
<template #dynamicComponentContainer></template>
<mat-icon (click)="closeNotification()" class="close-button">close</mat-icon>
</div>
</div>
</div>