const toastrConfig: Partial = {
closeButton: true,
progressBar: true,
timeOut: 10000,
toastClass: 'yourclass ngx-toastr'
// toastClass: 'custom-toastr',
// other configuration options...
};
.yourclass.toast-error{
background-color: blue !important;
}
can you please explain me why this is not working? am i doing anything wrong?
const toastrConfig: Partial = {
closeButton: true,
progressBar: true,
timeOut: 10000,
toastClass: 'yourclass ngx-toastr'
// toastClass: 'custom-toastr',
// other configuration options...
};
.yourclass.toast-error{
background-color: blue !important;
}
can you please explain me why this is not working? am i doing anything wrong?