Skip to content

Commit

Permalink
Fix stacking issue
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentSmedinga committed Dec 17, 2024
1 parent ef84e02 commit 7c64445
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions storybook/src/components/Breakout/Breakout.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ export const Default: Story = {
export const VerticalLayout: Story = {
args: {
children: [
<Breakout.Cell colSpan="all" has="figure" key={1} rowSpan={2} rowStart={1}>
<Image alt="" src="https://picsum.photos/1600/900" />
</Breakout.Cell>,
<Breakout.Cell colSpan="all" has="spotlight" key={2} rowSpan={2} rowStart={2}>
<Breakout.Cell colSpan="all" has="spotlight" key={1} rowSpan={2} rowStart={2}>
<Spotlight />
</Breakout.Cell>,
<Breakout.Cell colSpan="all" has="figure" key={2} rowSpan={2} rowStart={1}>
<Image alt="" src="https://picsum.photos/1600/900" />
</Breakout.Cell>,
<Breakout.Cell
colSpan={{ medium: 6, narrow: 4, wide: 8 }}
colStart={{ medium: 2, narrow: 1, wide: 3 }}
Expand Down

0 comments on commit 7c64445

Please sign in to comment.