From b89dbb105b67307ceaed156a24b2eb83b8980e62 Mon Sep 17 00:00:00 2001 From: Brian Vaughn Date: Wed, 22 Aug 2018 11:27:01 -0700 Subject: [PATCH] Add maxWidth to SplitPane to fix Firefox resize issue --- frontend/SplitPane.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/SplitPane.js b/frontend/SplitPane.js index f79adcff23..c437aeb100 100644 --- a/frontend/SplitPane.js +++ b/frontend/SplitPane.js @@ -111,6 +111,7 @@ const containerStyle = (isVertical: boolean) => ({ minWidth: 0, flex: 1, flexDirection: isVertical ? 'column' : 'row', + maxWidth: '100vw', }); const draggerInnerStyle = (isVertical: boolean, theme: Theme) => ({