Skip to content

Commit

Permalink
Tiny layout modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedkrmn committed Apr 17, 2019
1 parent 07c9f19 commit 03f27b0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 4 additions & 6 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,10 @@ app.commandLine.appendSwitch("no-proxy-server");

// Listen for app to be ready
app.on("ready", function() {
// Create new window
mainWindow = new BrowserWindow({
width: 1366,
height: 768,
title: "Loading ... Please wait"
});
// Create new window and start maximized
mainWindow = new BrowserWindow({ show: false });
mainWindow.maximize();
mainWindow.show();

// Load mainWindow
mainWindow.loadURL("http://localhost:3000");
Expand Down
2 changes: 1 addition & 1 deletion mainWindow.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ <h6 class="light center activator">
const schedulers = document.querySelectorAll(".card");
schedulers.forEach(scheduler => {
scheduler.addEventListener("mouseover", () => {
scheduler.style.boxShadow = "1px 2px 10px #90a4ae";
scheduler.style.boxShadow = "4px 4px 30px #90a4ae";
});
scheduler.addEventListener("mouseout", () => {
scheduler.style.boxShadow = "";
Expand Down

0 comments on commit 03f27b0

Please sign in to comment.