Skip to content

Commit

Permalink
chore: update AutoGrid default props
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswynn committed Jun 23, 2022
1 parent 770b3a1 commit bbaa854
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/AutoGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const AutoGrid: React.FC<GridProps> = styled(Grid)();

AutoGrid.defaultProps = {
...Grid.defaultProps,
gridGap: 1,
gridTemplateColumns: ["repeat(1, 1fr)", "repeat(5, 1fr)"],
gridGap: [24, 48],
gridTemplateColumns: ["repeat(1, 1fr)", "repeat(2, 1fr)"],
gridAutoRows: "min-content",
gridAutoFlow: "row",
};
Expand Down

0 comments on commit bbaa854

Please sign in to comment.