fix scrolling

Summary: "Plugin not showing" was scrolling with the sidebar. Fixed that.

Reviewed By: jknoxville

Differential Revision: D14123853

fbshipit-source-id: 12358bb3bd040701bafa080c2bcc27d8c837ea39
This commit is contained in:
Daniel Büchele
2019-02-18 07:19:56 -08:00
committed by Facebook Github Bot
parent 9bf41f7bb7
commit 84240ede4e

View File

@@ -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',