fix sidebar scrollbars

Summary: Only show scrollbars in sidebar when necessary.

Reviewed By: jknoxville, passy

Differential Revision: D14341446

fbshipit-source-id: e75f02b9de7796fc9ed8a42618ade3be015a1889
This commit is contained in:
Daniel Büchele
2019-03-06 05:47:25 -08:00
committed by Facebook Github Bot
parent fac138ded3
commit c0a30380dc
2 changed files with 2 additions and 1 deletions

View File

@@ -103,7 +103,7 @@ const PluginName = styled(Text)(props => ({
const Plugins = styled(FlexColumn)({
flexGrow: 1,
overflow: 'scroll',
overflow: 'auto',
});
const PluginDebugger = styled(FlexBox)(props => ({

View File

@@ -18,6 +18,7 @@ const Container = styled(FlexRow)({
padding: '5px 10px',
borderTop: `1px solid ${colors.blackAlpha10}`,
fontWeight: 500,
flexShrink: 0,
});
const ProfilePic = styled('img')({