This commit is contained in:
ntr 2019-09-23 21:42:54 +10:00
parent c2120a602b
commit 5fb44ee226
3 changed files with 9 additions and 5 deletions

View File

@ -17,15 +17,16 @@
.instance .construct-list { display: none; } .instance .construct-list { display: none; }
.vbox { .vbox {
grid-area: vbox; grid-area: vbox;
margin-bottom: 0;
display: grid; display: grid;
grid-template-rows: min-content min-content min-content min-content min-content; grid-template-rows: min-content min-content min-content min-content;
grid-template-columns: 1fr; grid-template-columns: 1fr;
grid-template-areas: grid-template-areas:
"vbox" "vbox"
"varrow" "varrow"
"inventory" "inventory"
"carrow"
"combiner"; "combiner";
} }
.vbox-arrow { .vbox-arrow {

View File

@ -1,6 +1,6 @@
@import 'colours.less'; @import 'colours.less';
html, body, #mnml { html body {
margin: 0; margin: 0;
background-color: black; background-color: black;
@ -12,7 +12,9 @@ html, body, #mnml {
-moz-user-select: none; -moz-user-select: none;
-webkit-user-select: none; -webkit-user-select: none;
-ms-user-select: none; -ms-user-select: none;
}
#mnml {
/* this is the sweet nectar to keep it full page*/ /* this is the sweet nectar to keep it full page*/
height: 100vh; height: 100vh;
max-height: 100vh; max-height: 100vh;

View File

@ -1,10 +1,11 @@
@media (max-width: 800px) { @media (max-width: 800px) {
#mnml { #mnml {
font-size: 12pt; font-size: 12pt;
padding: 1em 0 0 0; padding: 0;
grid-template-columns: 1fr; grid-template-columns: 1fr;
grid-template-rows: 1fr min-content; grid-template-rows: 1fr min-content;
overflow-y: scroll; /*overflow-y: scroll;*/
grid-template-areas: grid-template-areas:
"main" "main"
"footer"; "footer";