Skip to content

Commit

Permalink
Merge pull request #15 from troychaplin/fix/gap
Browse files Browse the repository at this point in the history
change: grid gap
  • Loading branch information
troychaplin authored Sep 8, 2024
2 parents 293d646 + be7d630 commit 445c043
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/components/ButtonGroup/ButtonGroup.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type Story = StoryObj<typeof meta>

export const Primary: Story = {
args: {
gap: 15,
gap: 20,
isCenter: false,
} as ButtonGroupProps,
render: (args) => (
Expand Down
2 changes: 1 addition & 1 deletion lib/components/CardGroup/CardGroup.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type Story = StoryObj<typeof meta>
export const Primary: Story = {
args: {
cols: 3,
gap: 25,
gap: 20,
} as CardGroupProps,
render: (args) => (
<CardGroup {...args}>
Expand Down
2 changes: 1 addition & 1 deletion lib/components/Column/Column.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type Story = StoryObj<typeof meta>
export const Primary: Story = {
args: {
cols: 2,
gap: 25,
gap: 20,
} as ColumnProps,
render: (args) => (
<Column {...args}>
Expand Down

0 comments on commit 445c043

Please sign in to comment.