fix(practice): remove overflow clipping to allow help overlays

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 <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2025-12-08 11:07:05 -06:00
parent 1ddf9fc94f
commit e9b123a7b3
1 changed files with 1 additions and 2 deletions

View File

@ -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 */}