Skip to content
Snippets Groups Projects
Commit 1de78669 authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Force a min viewport size to scroll around the UI instead of breaking

parent bd48a375
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,10 @@ body, ...@@ -5,6 +5,10 @@ body,
width: 100%; width: 100%;
height: 100%; height: 100%;
margin: 0; margin: 0;
/* Setting min height/width makes the UI scroll below those sizes */
min-width: 1024px;
min-height: 670px; /* Min height to fit sprite/backdrop button */
} }
/* @todo: move globally? Safe / side FX, for blocks particularly? */ /* @todo: move globally? Safe / side FX, for blocks particularly? */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment