From d2d6317b4e2a5592c0050988fedee25910973093 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Mon, 31 Oct 2022 14:38:34 -0400 Subject: [PATCH] Added some padding at the bottom of the page so the device statistics don't get covered by the footer --- assets/sass/sentry.sass | 3 ++- main.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/assets/sass/sentry.sass b/assets/sass/sentry.sass index 6f41d15..69973c0 100644 --- a/assets/sass/sentry.sass +++ b/assets/sass/sentry.sass @@ -2,7 +2,7 @@ $tab-bar-height: 50px body margin: 0 - padding: $tab-bar-height 0 0 + padding: $tab-bar-height 0 90px background: white font-size: 18px @@ -132,6 +132,7 @@ table.hardware-info bottom: 0 padding-top: 25px padding-bottom: 25px + background: white border-top: 1px solid #999 font-size: 16px diff --git a/main.js b/main.js index e106924..08a4ce9 100644 --- a/main.js +++ b/main.js @@ -6,7 +6,7 @@ function createWindow () { // Create the browser window. const mainWindow = new BrowserWindow({ width: 800, - height: 600, + height: 700, webPreferences: { nodeIntegration: true, contextIsolation: false,