Open cyrussutaria opened 3 years ago
This style from bootstrap is conflicting with toasty
.toast:not(.showing):not(.show) { opacity: 0; }
I solved the problem for myself by redefining this css class .toast:not(.show) It was: .toast:not(.show) { display: none }
.toast:not(.show) { display: none }
Changed to: .toast:not(.show) { display: block; }
.toast:not(.show) { display: block; }
This style from bootstrap is conflicting with toasty
.toast:not(.showing):not(.show) { opacity: 0; }