From 92c28f089cf5ae5ad9913e0b86b37b1127fee819 Mon Sep 17 00:00:00 2001 From: Aaron Raimist Date: Wed, 3 Jun 2020 14:56:44 -0500 Subject: [PATCH] Add max-width to right and left panels Signed-off-by: Aaron Raimist --- res/css/structures/_LeftPanel.scss | 1 + res/css/structures/_RightPanel.scss | 1 + 2 files changed, 2 insertions(+) diff --git a/res/css/structures/_LeftPanel.scss b/res/css/structures/_LeftPanel.scss index 7d57425f6f..35d9f0e7da 100644 --- a/res/css/structures/_LeftPanel.scss +++ b/res/css/structures/_LeftPanel.scss @@ -19,6 +19,7 @@ limitations under the License. display: flex; /* LeftPanel 260px */ min-width: 260px; + max-width: 50%; flex: 0 0 auto; } diff --git a/res/css/structures/_RightPanel.scss b/res/css/structures/_RightPanel.scss index 10878322e3..22b37cebfa 100644 --- a/res/css/structures/_RightPanel.scss +++ b/res/css/structures/_RightPanel.scss @@ -20,6 +20,7 @@ limitations under the License. flex: 0 0 auto; position: relative; min-width: 264px; + max-width: 50%; display: flex; flex-direction: column; }