fix: enable vertical scrolling in layout controls

Changed overflow from 'hidden' to 'overflowX: hidden, overflowY: auto'
to allow vertical scrolling when content is clipped while preventing
horizontal scroll.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2025-11-18 11:21:32 -06:00
parent 4174b6d2e7
commit a1b31f454a
1 changed files with 2 additions and 1 deletions

View File

@ -187,7 +187,8 @@ export function OrientationPanel({
shadow: 'card',
p: '4',
minWidth: 0,
overflow: 'hidden',
overflowX: 'hidden',
overflowY: 'auto',
containerType: 'inline-size',
'@container (max-width: 400px)': {
p: '3',