Skip to content

Commit

Permalink
More space on screen
Browse files Browse the repository at this point in the history
  • Loading branch information
knepper committed Feb 1, 2023
1 parent 9192e73 commit 4395653
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion signaturenDruck/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
4 changes: 2 additions & 2 deletions signaturenDruck/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4395653

Please sign in to comment.