Bring in the min sizes for GUI to allow scrollable UI

This commit is contained in:
Paul Kaplan 2018-12-27 11:12:34 -05:00
parent 8d1971876f
commit da8d60706f

View file

@ -18,6 +18,11 @@ $stage-width: 480px;
margin: 0;
width: 100%;
height: 100%;
/* Setting min height/width makes the UI scroll below those sizes */
/* Copied from GUI playground index.css */
min-width: 1024px;
min-height: 640px; /* Min height to fit sprite/backdrop button */
}
.page-has-admin-panel {