From 74199e388a4d160897e55fe8eb5ff868988aa7ac Mon Sep 17 00:00:00 2001 From: Paul Kaplan <pkaplan@media.mit.edu> Date: Wed, 23 Aug 2017 09:44:00 -0400 Subject: [PATCH] Fix max width of the stage and target wrapper --- src/components/gui/gui.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/gui/gui.css b/src/components/gui/gui.css index c8a9285a2..6412c9a88 100644 --- a/src/components/gui/gui.css +++ b/src/components/gui/gui.css @@ -112,6 +112,9 @@ */ display: flex; flex-direction: column; + + /* Fix the max width to max stage size (defined in layout_constants.js) + gutter size */ + max-width: calc(480px + calc($space * 2)); } .stage-wrapper { -- GitLab