Raise toast z-index to 9000 so it shows above all overlays
Some checks failed
PR Preview / teardown-preview (pull_request) Has been skipped
Test / unit-test (push) Successful in 4s
Test / build-check (push) Successful in 3s
PR Preview / test (pull_request) Successful in 4s
PR Preview / deploy-preview (pull_request) Successful in 13s
Test / e2e-test (push) Has been cancelled

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-07 22:32:42 +00:00
parent b9681141af
commit edc053ae0e

View File

@@ -445,7 +445,7 @@ body {
.toast { .toast {
position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%);
background: rgba(0,0,0,0.8); color: white; padding: 10px 24px; background: rgba(0,0,0,0.8); color: white; padding: 10px 24px;
border-radius: 20px; font-size: 14px; z-index: 999; border-radius: 20px; font-size: 14px; z-index: 9000;
pointer-events: none; transition: opacity 0.3s; pointer-events: none; transition: opacity 0.3s;
} }