Skip to content

Commit

Permalink
Merge pull request storybookjs#8304 from hannah-saurusrex/mobile-styl…
Browse files Browse the repository at this point in the history
…es-update

adjusted mobile styles to bottom bar did not obstruct content.

Co-authored-by: Norbert de Langen <ndelangen@me.com>
  • Loading branch information
ndelangen committed Dec 21, 2019
2 parents 1f5b228 + 407ce2a commit a4622c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ui/src/components/sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Heading = styled(SidebarHeading)<SidebarHeadingProps>({

const Stories = styled(({ className, ...rest }) => (
<SidebarStories className={className} {...rest} />
))(({ loading }) => (loading ? { marginTop: 8 } : {}));
))(({ loading }) => (loading ? { marginTop: 8, overflow: 'hidden' } : { overflow: 'hidden' }));

const Container = styled.nav({
position: 'absolute',
Expand Down

0 comments on commit a4622c9

Please sign in to comment.