Skip to content

Commit 03f6aa5

Browse files
author
Ives van Hoorne
committed
Fix overflow
1 parent a2ec3b9 commit 03f6aa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/pages/SandboxView/Sandbox/Editor/Workspace/WorkspaceItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const ChildContainer = styled.div`
99
margin: 0;
1010
padding: 0;
1111
border-bottom: 1px solid ${props => props.theme.background2};
12-
12+
overflow: ${props => props.open ? 'inherit' : 'hidden'};
1313
height: ${props => props.open ? '100%' : 0};
1414
`;
1515

0 commit comments

Comments
 (0)