Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/window.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ declare const MAIN_WINDOW_PRELOAD_WEBPACK_ENTRY: string;
export const createWindow = (): BrowserWindow => {
// Create the browser window.
const mainWindow = new BrowserWindow({
height: 600,
width: 800,
height: 850,
width: 1400,
icon: path.join(__dirname, '..', '..', 'assets', 'icon.ico'),
titleBarStyle: 'hidden',
titleBarOverlay: process.platform === 'win32' ? {
Expand Down
28 changes: 0 additions & 28 deletions src/renderer/renderer.tsx
Original file line number Diff line number Diff line change
@@ -1,31 +1,3 @@
/**
* This file will automatically be loaded by webpack and run in the "renderer" context.
* To learn more about the differences between the "main" and the "renderer" context in
* Electron, visit:
*
* https://electronjs.org/docs/latest/tutorial/process-model
*
* By default, Node.js integration in this file is disabled. When enabling Node.js integration
* in a renderer process, please be aware of potential security implications. You can read
* more about security risks here:
*
* https://electronjs.org/docs/tutorial/security
*
* To enable Node.js integration in this file, open up `main.js` and enable the `nodeIntegration`
* flag:
*
* ```
* // Create the browser window.
* mainWindow = new BrowserWindow({
* width: 800,
* height: 600,
* webPreferences: {
* nodeIntegration: true
* }
* });
* ```
*/

import 'bootstrap/dist/css/bootstrap.min.css';
import 'bootstrap/dist/js/bootstrap.bundle.min.js';
import '@fortawesome/fontawesome-free/css/all.min.css';
Expand Down
Loading