restore nice toast alerts

This commit is contained in:
johnnyq
2026-08-27 23:54:04 -04:00
parent 988788b7c0
commit 1119e13e5d
3 changed files with 164 additions and 33 deletions

View File

@@ -804,7 +804,7 @@ function itflowToast(message, type) {
var container = document.querySelector('.toast-container.itflow-toast-js');
if (!container) {
container = document.createElement('div');
container.className = 'toast-container itflow-toast-js position-fixed top-0 start-50 translate-middle-x p-3';
container.className = 'toast-container itflow-toast-js position-fixed top-0 end-0 p-3';
container.style.zIndex = '1090';
document.body.appendChild(container);
}