From 8758299d99c7cf363a8314da5def4c584ccc3bfe Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Tue, 22 Mar 2022 01:16:51 +0100 Subject: [PATCH] set a better minimum width and remove some unnecessary css --- main.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/main.ts b/main.ts index 827a20e..71ff6fc 100644 --- a/main.ts +++ b/main.ts @@ -3,19 +3,11 @@ import { remote, webContents } from 'electron'; const viewName: string = "keep"; const defaultSettings: KeepSettings = { - minimumWidth: 360, + minimumWidth: 370, padding: 5, css: `/* hide the menu bar and the "Keep" logo and text */ .PvRhvb-qAWA2, .gb_2d.gb_Zc { display: none !important; -} - -/* remove the margin around each note so that less horizontal space is taken up */ -.kPTQic-nUpftc.ma6Yeb-r8s4j-gkA7Yd.IZ65Hb-n0tgWb { - margin: 0px !important; -} -.kPTQic-nUpftc.h1U9Be-xhiy4 { - margin: 16px 0px 8px 0px !important; }` };