Skip to content

Commit 2455fae

Browse files
authored
Set an overflow hidden on the editor container (codesandbox#333)
1 parent 98b20a3 commit 2455fae

File tree

1 file changed

+1
-1
lines changed
  • packages/app/src/app/pages/Sandbox/Editor

1 file changed

+1
-1
lines changed

packages/app/src/app/pages/Sandbox/Editor/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default class ContentSplit extends React.PureComponent<Props, State> {
3535
const { sandbox, match } = this.props;
3636
const { resizing, workspaceHidden } = this.state;
3737
return (
38-
<Fullscreen style={{ position: 'relative' }}>
38+
<Fullscreen style={{ position: 'relative', overflow: 'hidden' }}>
3939
<SplitPane
4040
split="vertical"
4141
defaultSize={18 * 16}

0 commit comments

Comments
 (0)