From 752927060e274eb96d7ad99df3bd73e6191e81d4 Mon Sep 17 00:00:00 2001 From: Pedro Duarte Date: Thu, 5 Sep 2019 20:26:31 +0100 Subject: [PATCH] improvement(editor): remove editor width constraint (#2626) * Remove Editor max width * Increase divider width --- .../netlify-cms-core/src/components/Editor/EditorInterface.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/netlify-cms-core/src/components/Editor/EditorInterface.js b/packages/netlify-cms-core/src/components/Editor/EditorInterface.js index a9a85651..60560729 100644 --- a/packages/netlify-cms-core/src/components/Editor/EditorInterface.js +++ b/packages/netlify-cms-core/src/components/Editor/EditorInterface.js @@ -38,7 +38,7 @@ const ReactSplitPaneGlobalStyles = () => ( &:before { content: ''; - width: 1px; + width: 2px; height: 100%; position: relative; left: 10px; @@ -83,7 +83,6 @@ const EditorContainer = styled.div` `; const Editor = styled.div` - max-width: 1600px; height: 100%; margin: 0 auto; position: relative;