From d46a4ffdf8fb4cadbe08dd1f56400403ca09aec7 Mon Sep 17 00:00:00 2001 From: Daniel Lautzenheiser Date: Tue, 20 Sep 2022 12:01:58 -0400 Subject: [PATCH] Set global min width --- packages/netlify-cms-core/src/components/App/App.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/netlify-cms-core/src/components/App/App.js b/packages/netlify-cms-core/src/components/App/App.js index 81e59372..0c260b54 100644 --- a/packages/netlify-cms-core/src/components/App/App.js +++ b/packages/netlify-cms-core/src/components/App/App.js @@ -36,11 +36,13 @@ TopBarProgress.config({ const AppRoot = styled.div` width: 100%; + min-width: 1200px; min-height: 100vh; `; const AppWrapper = styled.div` width: 100%; + min-width: 1200px; min-height: 100vh; `;