From 1de7866960a32a45ac3cf562304a6eb7d237d362 Mon Sep 17 00:00:00 2001
From: Paul Kaplan <pkaplan@media.mit.edu>
Date: Tue, 22 May 2018 09:19:41 -0400
Subject: [PATCH] Force a min viewport size to scroll around the UI instead of
 breaking

---
 src/playground/index.css | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/playground/index.css b/src/playground/index.css
index a63aec428..a8bd3c73a 100644
--- a/src/playground/index.css
+++ b/src/playground/index.css
@@ -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: 670px; /* Min height to fit sprite/backdrop button */
 }
 
 /* @todo: move globally? Safe / side FX, for blocks particularly? */
-- 
GitLab