fix: toast z-index above slide panels
All checks were successful
Deploy / deploy (push) Successful in 11s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
fahed
2026-03-04 23:34:23 +03:00
parent ad539fd7f4
commit fe509b65a9

View File

@@ -37,7 +37,7 @@ export function ToastProvider({ children }) {
<ToastContext.Provider value={toast}>
{children}
{/* Toast container - fixed position */}
<div className="fixed top-4 right-4 z-50 flex flex-col gap-2 pointer-events-none">
<div className="fixed top-4 right-4 z-[10000] flex flex-col gap-2 pointer-events-none">
<div className="flex flex-col gap-2 pointer-events-auto">
{toasts.map(t => (
<Toast