From e9b123a7b3df66655e86f76734621c0f99a6e9b3 Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Mon, 8 Dec 2025 11:07:05 -0600 Subject: [PATCH] fix(practice): remove overflow clipping to allow help overlays MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove overflow-x/overflow-y clipping as CSS doesn't allow mixing visible and hidden on different axes. The outgoing problem fades to opacity 0 anyway so clipping isn't needed. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- apps/web/src/components/practice/ActiveSession.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/web/src/components/practice/ActiveSession.tsx b/apps/web/src/components/practice/ActiveSession.tsx index a78075f9..f03d06e9 100644 --- a/apps/web/src/components/practice/ActiveSession.tsx +++ b/apps/web/src/components/practice/ActiveSession.tsx @@ -981,8 +981,7 @@ export function ActiveSession({ display: 'flex', justifyContent: 'center', width: '100%', - overflowX: 'hidden', // Clip horizontal transition, allow vertical for help overlays - overflowY: 'visible', + // No overflow clipping - outgoing problem fades to opacity 0 anyway })} > {/* Animated track for problem transitions */}