diff --git a/src/components/Container.stories.tsx b/src/components/Container.stories.tsx index b223fc8..83c312c 100644 --- a/src/components/Container.stories.tsx +++ b/src/components/Container.stories.tsx @@ -23,7 +23,7 @@ export default { * on a returning component. */ const Template: ComponentStory = (args) => ( -
simple
+ ); // /* -------------------------------------------------------------------------- */ @@ -31,14 +31,58 @@ const Template: ComponentStory = (args) => ( /* -------------------------------------------------------------------------- */ export const Desktop: ComponentStory = Template.bind({}); +Desktop.args = { + className: 'bg-blue-500 w-840 block', + children:
840px
, + +} + Desktop.parameters = { - viewport: { - defaultViewport: 'desktop', - styles: { - height: '568px', - width: '320px', - }, - }, - - -} \ No newline at end of file + viewport: { + defaultViewport: 'desktop', + + viewports: { + + desktop: { + name: 'main_container', + styles: { + width: '840px', + height: '100%', + paddingLeft: '0.5rem', + paddingRight: '0.5rem', + }, + type: 'desktop', + }, + + screen_sm: { + name: 'screen_sm', + styles: { + width: 'calc(100% - 30px)', + height: '100%', + }, + type: 'tablet', + }, + + screen_md: { + name: 'screen_md', + styles: { + width: 'calc(100% - 30px)', + height: '100%', + }, + type: 'tablet', + }, + + screen_lg_xl_2xl: { + name: 'lg-xl-2xl', + styles: { + width: '840px', + height: '100%', + }, + type: 'desktop', + }, + } + } +} + + + \ No newline at end of file