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

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

Loading…
Cancel
Save