Skip to content

Commit

Permalink
and after all, why not? it's mine, isn't it?
Browse files Browse the repository at this point in the history
my own? my... precious?
  • Loading branch information
sfoster1 committed Jul 3, 2024
1 parent 151986f commit ec699d7
Showing 1 changed file with 21 additions and 16 deletions.
37 changes: 21 additions & 16 deletions app/src/molecules/InterventionModal/DeckMapContent.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,24 +108,29 @@ const meta: Meta<React.ComponentProps<typeof DeckMapContent>> = {
if: { arg: 'kind', eq: 'intervention' },
},
highlightLabwareEventuallyIn: {
if: { arg: 'kind', eq: 'intervention' },
if: { arg: 'kind', eq: 'intervention' },
},
},
decorators: [
(Story) => (
<Box css={css`
border: 4px solid #000000;
border-radius: ${BORDERS.borderRadius8};
max-width: 47rem;
@media ${RESPONSIVENESS.touchscreenMediaQuerySpecs} {
max-width: 62rem;
max-height: 33.5rem;
}
`}>
<TwoColumn ><StandInContent /><Story />
</TwoColumn>
</Box>)
]
decorators: [
Story => (
<Box
css={css`
border: 4px solid #000000;
border-radius: ${BORDERS.borderRadius8};
max-width: 47rem;
@media ${RESPONSIVENESS.touchscreenMediaQuerySpecs} {
max-width: 62rem;
max-height: 33.5rem;
}
`}
>
<TwoColumn>
<StandInContent />
<Story />
</TwoColumn>
</Box>
),
],
}

export default meta
Expand Down

0 comments on commit ec699d7

Please sign in to comment.