UNPKG

notify-angular

Version:

Simple yet customizable notifications for Angular2+, well suited in combination with Material Design

18 lines (15 loc) 564 B
<div class="notification-wrapper" *ngIf="notification" [style.bottom]="notification.position.bottom" [style.top]="notification.position.top" [style.right]="notification.position.right" [style.left]="notification.position.left" (click)="removeNotification()"> <div class="notification" [class.hidden]="hidden" [style.color]="notification.color" [style.background]="notification.background" [ngClass]="{'with-shadow': notification.withShadow}"> {{notification.message}} </div> </div>