From 43956535888303ad55fd38ad4accff80a133669c Mon Sep 17 00:00:00 2001 From: Marko Knepper Date: Wed, 1 Feb 2023 18:21:17 +0100 Subject: [PATCH] More space on screen --- signaturenDruck/css/index.css | 2 +- signaturenDruck/main.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/signaturenDruck/css/index.css b/signaturenDruck/css/index.css index e116e03..c966cc8 100644 --- a/signaturenDruck/css/index.css +++ b/signaturenDruck/css/index.css @@ -14,7 +14,7 @@ html, body { border-bottom: 1px solid black; overflow-x: hidden; overflow-y: scroll; - height: 260px; + height: 390px; width: 100%; background-color: RGB(255, 254, 225); } diff --git a/signaturenDruck/main.js b/signaturenDruck/main.js index 926568a..2396833 100644 --- a/signaturenDruck/main.js +++ b/signaturenDruck/main.js @@ -243,9 +243,9 @@ function createWindow () { checkConfig() // Create the browser window. if (!config.store.devMode) { - mainWindow = new BrowserWindow({ width: 850, height: 570, backgroundColor: '#f0f0f0' }) + mainWindow = new BrowserWindow({ width: 850, height: 700, backgroundColor: '#f0f0f0' }) } else { - mainWindow = new BrowserWindow({ width: 850, height: 600, backgroundColor: '#f0f0f0' }) + mainWindow = new BrowserWindow({ width: 850, height: 730, backgroundColor: '#f0f0f0' }) } if (config.store.showMenu) { Menu.setApplicationMenu(menu)