Skip to content

Commit cd5e390

Browse files
chore: fix default_app dimensions (electron#22675)
1 parent 7814c67 commit cd5e390

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

default_app/default_app.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ async function createWindow () {
4545
await app.whenReady()
4646

4747
const options: Electron.BrowserWindowConstructorOptions = {
48-
width: 900,
49-
height: 600,
48+
width: 960,
49+
height: 620,
5050
autoHideMenuBar: true,
51-
backgroundColor: '#FFFFFF',
51+
backgroundColor: '#2f3241',
5252
webPreferences: {
5353
preload: path.resolve(__dirname, 'preload.js'),
5454
contextIsolation: true,

default_app/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ body {
88
}
99

1010
.container {
11-
margin: 15px 30px 30px 30px;
11+
margin: 15px 30px;
1212
background-color: #2f3241;
1313
flex: 1;
1414
display: flex;

0 commit comments

Comments
 (0)