From c4dd8a915bb6af2f27d0144d92cc3ddf81b2bc5c Mon Sep 17 00:00:00 2001 From: Decobus Date: Sun, 20 Jul 2025 01:57:59 -0400 Subject: [PATCH] Fix dropdown z-index with CSS layer forcing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added CSS properties to force dropdown above stacking contexts: - z-index: 99999 \!important - position: absolute - transform: translateZ(0) to create new stacking context - will-change: transform for optimization This addresses the issue where backdrop-filter in .glass creates stacking contexts that hide dropdowns. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- app/globals.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/globals.css b/app/globals.css index 955ad62..288b6ab 100644 --- a/app/globals.css +++ b/app/globals.css @@ -213,6 +213,10 @@ body { margin-top: 4px; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); + z-index: 99999 !important; + position: absolute; + transform: translateZ(0); + will-change: transform; } .dropdown-item {