We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d19377 commit 091e7e4Copy full SHA for 091e7e4
src/components/content/Layout/Layout.stories.tsx
@@ -523,6 +523,7 @@ export const FlexSubComponent: Story = {
523
gap="1x"
524
placeItems="center"
525
placeContent="center"
526
+ padding="1x"
527
>
528
<Card width="100px" height="80px">
529
Item 1
@@ -542,7 +543,7 @@ export const FlexWithScrolling: Story = {
542
543
render: () => (
544
<Layout height="200px">
545
<Layout.Header title="Scrollable Flex Container" />
- <Layout.Flex flow="row" gap="1x" placeItems="start">
546
+ <Layout.Flex flow="row" gap="1x" placeItems="start" padding="1x">
547
{Array.from({ length: 20 }, (_, i) => (
548
<Card key={i} width="100px" height="100px" flexShrink={0}>
549
Item {i + 1}
0 commit comments