From 84240ede4ed2f641f33d71a195e73719071b2b1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20B=C3=BCchele?= Date: Mon, 18 Feb 2019 07:19:56 -0800 Subject: [PATCH] fix scrolling Summary: "Plugin not showing" was scrolling with the sidebar. Fixed that. Reviewed By: jknoxville Differential Revision: D14123853 fbshipit-source-id: 12358bb3bd040701bafa080c2bcc27d8c837ea39 --- src/chrome/MainSidebar.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/chrome/MainSidebar.js b/src/chrome/MainSidebar.js index 67a3e675f..c3546610d 100644 --- a/src/chrome/MainSidebar.js +++ b/src/chrome/MainSidebar.js @@ -102,6 +102,7 @@ const PluginName = styled(Text)(props => ({ const Plugins = styled(FlexColumn)({ flexGrow: 1, + overflow: 'scroll', }); const PluginDebugger = styled(FlexBox)(props => ({ @@ -109,6 +110,7 @@ const PluginDebugger = styled(FlexBox)(props => ({ borderTop: `1px solid ${colors.blackAlpha10}`, alignItems: 'center', padding: 10, + flexShrink: 0, whiteSpace: 'nowrap', overflow: 'hidden', textOverflow: 'ellipsis',