Angular 2 Alerts that work with Bootstrap 4, similar to Toastr

2.5k Views Asked by At

I am attempting to get toastr style alert messages working with Bootstrap 4 and Angular 2 and the current packages that I have installed only work with Bootstrap 3.

Wondering if anyone has had any success getting an alerts package working with Angular 2 and Bootstrap 4?

They all work as far as sending alerts to the screen and disappearing, but without any styling as the wrong classes are being used.

I am using Bootstrap 4 and also ng-bootstrap in this project.

Un-Styled Toaster Message

1

There are 1 best solutions below

0
On BEST ANSWER

Thank you to 12seconds for the input above, I just worked that out for myself using ng2-toasty.

I'm using webpack and I assumed that CSS was being imported automatically, I decided to copy the style sheets out of node_modules\ng2-toasty into my own folder assets\ng-toasty and put references into index.html.

My problem is now solved.

<link rel="stylesheet" href="assets/ng2-toasty/style.css" />
<link rel="stylesheet" href="assets/ng2-toasty/style-bootstrap.css" />

enter image description here