From 476c5119bbab55f4e99f62a8b2f77d6e3bd15942 Mon Sep 17 00:00:00 2001 From: Tom Kirkpatrick Date: Sat, 17 Nov 2018 17:53:07 +0100 Subject: [PATCH] style(ui): increase default window size --- app/components/UI/Page.js | 4 ++-- app/main.dev.js | 6 +++--- test/unit/components/UI/__snapshots__/Page.spec.js.snap | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/components/UI/Page.js b/app/components/UI/Page.js index 9880f8ae..ec3e3cca 100644 --- a/app/components/UI/Page.js +++ b/app/components/UI/Page.js @@ -15,8 +15,8 @@ const Page = ({ css, ...rest }) => ( { height: '100%', overflow: 'hidden', - 'min-width': '950px', - 'min-height': '600px', + 'min-width': '900px', + 'min-height': '425px', 'box-shadow': '0 20px 70px rgba(0, 0, 0, 0.55)' }, css diff --git a/app/main.dev.js b/app/main.dev.js index ad0ca0ae..603f78b2 100644 --- a/app/main.dev.js +++ b/app/main.dev.js @@ -114,9 +114,9 @@ app.on('ready', async () => { show: false, useContentSize: true, titleBarStyle: 'hidden', - width: 950, - height: 600, - minWidth: 950, + width: 1020, + height: 650, + minWidth: 900, minHeight: 425, backgroundColor: get(theme, 'colors.primaryColor', '#242633') }) diff --git a/test/unit/components/UI/__snapshots__/Page.spec.js.snap b/test/unit/components/UI/__snapshots__/Page.spec.js.snap index 5fea134f..d47520c4 100644 --- a/test/unit/components/UI/__snapshots__/Page.spec.js.snap +++ b/test/unit/components/UI/__snapshots__/Page.spec.js.snap @@ -5,8 +5,8 @@ exports[`component.UI.Page should render correctly 1`] = ` background-color: primaryColor; height: 100%; overflow: hidden; - min-width: 950px; - min-height: 600px; + min-width: 900px; + min-height: 425px; box-shadow: 0 20px 70px rgba(0,0,0,0.55); display: -webkit-box; display: -webkit-flex;