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; }
.vbox {
grid-area: vbox;
margin-bottom: 0;
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-areas:
"vbox"
"varrow"
"inventory"
"carrow"
"combiner";
}
.vbox-arrow {

View File

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

View File

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