From 5388441ebb95634663d3f3f1afc10f9d72cb9e03 Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Wed, 19 Nov 2025 09:23:05 -0600 Subject: [PATCH] fix: increase z-index of pointer lock prompt overlay MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Increase z-index from 1000 to 10000 to ensure the overlay appears above all other content. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .../arcade-games/know-your-world/components/PlayingPhase.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/arcade-games/know-your-world/components/PlayingPhase.tsx b/apps/web/src/arcade-games/know-your-world/components/PlayingPhase.tsx index 7ff7cd1b..1b4acafa 100644 --- a/apps/web/src/arcade-games/know-your-world/components/PlayingPhase.tsx +++ b/apps/web/src/arcade-games/know-your-world/components/PlayingPhase.tsx @@ -146,7 +146,7 @@ export function PlayingPhase() { border: '3px solid', borderColor: 'blue.500', boxShadow: '0 10px 40px rgba(0, 0, 0, 0.5)', - zIndex: 1000, + zIndex: 10000, textAlign: 'center', cursor: 'pointer', transition: 'all 0.2s',