window is limited to minimum of 769. this prevents media resizing

pull/2/head
David Tookey 5 years ago
parent 9db51f3c0d
commit 833664bb1b

@ -1,10 +1,15 @@
html {
font-size: 14px;
}
@media (min-width: 768px) {
html {
font-size: 16px;
}
.main {
padding-right: 40px;
padding-left: 220px; /* 180 + 40 */
}
}
.input-group {
@ -106,12 +111,6 @@ body {
color: navbartext;
}
@media (min-width: 768 px) {
.main {
padding-right: 40px;
padding-left: 220px; /* 180 + 40 */
}
}
.searchbutton {
background-color: transparent;

@ -17,7 +17,7 @@ function initialize () {
function createWindow () {
const windowOptions = {
width: 1080,
minWidth: 680,
minWidth: 769,
height: 840,
title: app.name,
webPreferences: {

Loading…
Cancel
Save