From a1b31f454a698b6ab4a43f985f6df4d36d92ecf1 Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Tue, 18 Nov 2025 11:21:32 -0600 Subject: [PATCH] fix: enable vertical scrolling in layout controls MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .../src/app/create/worksheets/components/OrientationPanel.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/src/app/create/worksheets/components/OrientationPanel.tsx b/apps/web/src/app/create/worksheets/components/OrientationPanel.tsx index b1a32aae..5747e752 100644 --- a/apps/web/src/app/create/worksheets/components/OrientationPanel.tsx +++ b/apps/web/src/app/create/worksheets/components/OrientationPanel.tsx @@ -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',