From edc053ae0e20fe3e0ab2b387ad2300ce19ea0e23 Mon Sep 17 00:00:00 2001 From: Hera Zhao Date: Tue, 7 Apr 2026 22:32:42 +0000 Subject: [PATCH] Raise toast z-index to 9000 so it shows above all overlays Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/assets/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/assets/styles.css b/frontend/src/assets/styles.css index bfc6aa6..4ed1722 100644 --- a/frontend/src/assets/styles.css +++ b/frontend/src/assets/styles.css @@ -445,7 +445,7 @@ body { .toast { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%); 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; }