Skip to content

Commit 091e7e4

Browse files
committed
chore(Layout): fix stories
1 parent 5d19377 commit 091e7e4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/content/Layout/Layout.stories.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,6 +523,7 @@ export const FlexSubComponent: Story = {
523523
gap="1x"
524524
placeItems="center"
525525
placeContent="center"
526+
padding="1x"
526527
>
527528
<Card width="100px" height="80px">
528529
Item 1
@@ -542,7 +543,7 @@ export const FlexWithScrolling: Story = {
542543
render: () => (
543544
<Layout height="200px">
544545
<Layout.Header title="Scrollable Flex Container" />
545-
<Layout.Flex flow="row" gap="1x" placeItems="start">
546+
<Layout.Flex flow="row" gap="1x" placeItems="start" padding="1x">
546547
{Array.from({ length: 20 }, (_, i) => (
547548
<Card key={i} width="100px" height="100px" flexShrink={0}>
548549
Item {i + 1}

0 commit comments

Comments
 (0)