Add centralized error handling with UI toast for user-facing errors

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
erik 2026-02-26 09:33:57 +00:00
parent 16861ba88a
commit 40198fa0cf
2 changed files with 39 additions and 8 deletions

View file

@ -1570,3 +1570,23 @@ body.noselect, body.noselect * {
color: #88ccff;
}
/* Error Toast */
.error-toast {
position: fixed;
bottom: 20px;
right: 20px;
background: rgba(220, 38, 38, 0.9);
color: white;
padding: 12px 20px;
border-radius: 8px;
font-size: 13px;
z-index: 99999;
animation: toastFadeIn 0.3s ease;
max-width: 400px;
}
@keyframes toastFadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}