diff --git a/src/client/manager/modules/ui/components/left_panel/index.js b/src/client/manager/modules/ui/components/left_panel/index.js index 4b4d401871cd..1e802912ec28 100644 --- a/src/client/manager/modules/ui/components/left_panel/index.js +++ b/src/client/manager/modules/ui/components/left_panel/index.js @@ -5,7 +5,8 @@ import TextFilter from './text_filter'; import pick from 'lodash.pick'; const scrollStyle = { - height: '100vh', + height: 'calc(100vh - 105px)', + marginTop: 10, overflowY: 'auto', }; @@ -16,14 +17,14 @@ const mainStyle = { const storyProps = ['stories', 'selectedKind', 'selectedStory', 'onSelectStory']; const LeftPanel = (props) => ( -