diff --git a/packages/scene-composer/src/layouts/SceneLayout/__snapshots__/SceneLayout.spec.tsx.snap b/packages/scene-composer/src/layouts/SceneLayout/__snapshots__/SceneLayout.spec.tsx.snap index e76f831e7..61311b1ea 100644 --- a/packages/scene-composer/src/layouts/SceneLayout/__snapshots__/SceneLayout.spec.tsx.snap +++ b/packages/scene-composer/src/layouts/SceneLayout/__snapshots__/SceneLayout.spec.tsx.snap @@ -67,6 +67,7 @@ exports[`SceneLayout should not render camera preview if editing and non-camera .c6 { width: 400px; height: 100%; + overflow-y: auto; } .c27 { @@ -1255,6 +1256,7 @@ exports[`SceneLayout should render camera preview if editing and camera componen .c6 { width: 400px; height: 100%; + overflow-y: auto; } .c27 { @@ -2455,6 +2457,7 @@ exports[`SceneLayout should render correctly in Edit mode 1`] = ` .c6 { width: 400px; height: 100%; + overflow-y: auto; } .c27 { @@ -3643,6 +3646,7 @@ exports[`SceneLayout should render correctly in Edit mode with Modal 1`] = ` .c8 { width: 400px; height: 100%; + overflow-y: auto; } .c29 { @@ -4879,6 +4883,7 @@ exports[`SceneLayout should render correctly in Viewing mode 1`] = ` .c5 { width: 400px; height: 100%; + overflow-y: auto; } .c0 { @@ -5447,6 +5452,7 @@ exports[`SceneLayout should render correctly in Viewing mode with modal 1`] = ` .c7 { width: 400px; height: 100%; + overflow-y: auto; } .c2 { diff --git a/packages/scene-composer/src/layouts/SceneLayout/components/LeftPanel.tsx b/packages/scene-composer/src/layouts/SceneLayout/components/LeftPanel.tsx index b96d82166..a249b4f1a 100644 --- a/packages/scene-composer/src/layouts/SceneLayout/components/LeftPanel.tsx +++ b/packages/scene-composer/src/layouts/SceneLayout/components/LeftPanel.tsx @@ -8,6 +8,7 @@ import TabbedPanelContainer from './TabbedPanelContainer'; const FixedWidthDiv = styled.div` width: 400px; height: 100%; + overflow-y: auto; `; const LeftPanel: FC> = (props) => ( diff --git a/packages/scene-composer/src/layouts/SceneLayout/components/__snapshots__/LeftPanel.spec.tsx.snap b/packages/scene-composer/src/layouts/SceneLayout/components/__snapshots__/LeftPanel.spec.tsx.snap index 1a062f39a..eabac1e86 100644 --- a/packages/scene-composer/src/layouts/SceneLayout/components/__snapshots__/LeftPanel.spec.tsx.snap +++ b/packages/scene-composer/src/layouts/SceneLayout/components/__snapshots__/LeftPanel.spec.tsx.snap @@ -4,6 +4,7 @@ exports[` should render the expencted layout 1`] = ` .c0 { width: 400px; height: 100%; + overflow-y: auto; }