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

Commit 91d818c

Browse files
authored
fix: sidebar view on small screens (#136)
1 parent ae6e479 commit 91d818c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/Version/Layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ function renderSidebar(): ReactElement<HTMLElement> {
1414
const Layout: FC<{}> = () => {
1515
return (
1616
<Grid className={'container content'} container={true} data-testid="version-layout" spacing={0}>
17-
<Grid item={true} xs={8}>
17+
<Grid item={true} md={8} xs={12}>
1818
{renderDetail()}
1919
</Grid>
20-
<Grid item={true} xs={4}>
20+
<Grid item={true} md={4} xs={12}>
2121
{renderSidebar()}
2222
</Grid>
2323
</Grid>

0 commit comments

Comments
 (0)