Skip to content

Commit

Permalink
add space
Browse files Browse the repository at this point in the history
  • Loading branch information
Dankco committed Jun 6, 2023
1 parent bff7050 commit cde5d4f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default function Grid(props: GridProps): JSX.Element {
gridTemplateColumns: shelfArray.join(' '),
};
return (
<>
<div className="grid-container">
<div className="item-container" style={{ ...itemStyles }}>
{props.children}
</div>
Expand All @@ -34,6 +34,6 @@ export default function Grid(props: GridProps): JSX.Element {
))}
</div>
`
</>
</div>
);
}
4 changes: 4 additions & 0 deletions src/styles/Grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@
display: grid;
justify-content: center;
}

.grid-container {
margin-top: 150px;
}

0 comments on commit cde5d4f

Please sign in to comment.