Skip to content
This repository has been archived by the owner on Jan 16, 2022. It is now read-only.

Commit

Permalink
fix: sidebar view on small screens (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
juanpicado authored Sep 30, 2019
1 parent ae6e479 commit 91d818c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/Version/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ function renderSidebar(): ReactElement<HTMLElement> {
const Layout: FC<{}> = () => {
return (
<Grid className={'container content'} container={true} data-testid="version-layout" spacing={0}>
<Grid item={true} xs={8}>
<Grid item={true} md={8} xs={12}>
{renderDetail()}
</Grid>
<Grid item={true} xs={4}>
<Grid item={true} md={4} xs={12}>
{renderSidebar()}
</Grid>
</Grid>
Expand Down

0 comments on commit 91d818c

Please sign in to comment.