I successfully integrated a notification bar using the npm package ngx-notification-bar
https://i.sstatic.net/MVrwu.png
Within the app.component.ts file, I have included the following code snippet:
this.notificationBarService.create({ message: 'Free Shipping on Order above RM 150', type: NotificationType.Info, allowClose: true, autoHide: false, hideOnHover: false });
In the app.component.html file:
<notification-bar></notification-bar>
I am looking to customize the text style, background color, and position of the X icon in the notification bar. Any guidance on how to achieve this would be appreciated.