Skip to content
Snippets Groups Projects
Unverified Commit 1377e7b8 authored by Paul Kaplan's avatar Paul Kaplan Committed by GitHub
Browse files

Merge pull request #2124 from paulkaplan/viewport-sizing

Force a min viewport size to scroll around the UI instead of breaking
parents d9299521 da8a4af3
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,10 @@ body,
width: 100%;
height: 100%;
margin: 0;
/* Setting min height/width makes the UI scroll below those sizes */
min-width: 1024px;
min-height: 640px; /* Min height to fit sprite/backdrop button */
}
/* @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