diff --git a/packages/react-components/react-card/stories/src/Card/CardAction.stories.tsx b/packages/react-components/react-card/stories/src/Card/CardAction.stories.tsx index 30da03dfc476a..c48beaf5cc3e8 100644 --- a/packages/react-components/react-card/stories/src/Card/CardAction.stories.tsx +++ b/packages/react-components/react-card/stories/src/Card/CardAction.stories.tsx @@ -37,8 +37,8 @@ const useStyles = makeStyles({ description: { margin: '0 0 12px' }, card: { - width: '400px', - maxWidth: '100%', + maxWidth: '400px', + width: '100%', height: 'fit-content', }, diff --git a/packages/react-components/react-card/stories/src/Card/CardAppearance.stories.tsx b/packages/react-components/react-card/stories/src/Card/CardAppearance.stories.tsx index 6707579212ef1..fcd3c7b1b5cb1 100644 --- a/packages/react-components/react-card/stories/src/Card/CardAppearance.stories.tsx +++ b/packages/react-components/react-card/stories/src/Card/CardAppearance.stories.tsx @@ -24,8 +24,8 @@ const useStyles = makeStyles({ description: { margin: '0 0 12px' }, card: { - width: '480px', - maxWidth: '100%', + maxWidth: '480px', + width: '100%', height: 'fit-content', }, diff --git a/packages/react-components/react-card/stories/src/Card/CardDefault.stories.tsx b/packages/react-components/react-card/stories/src/Card/CardDefault.stories.tsx index bd672d5a1fcd9..5850c8cd59ee5 100644 --- a/packages/react-components/react-card/stories/src/Card/CardDefault.stories.tsx +++ b/packages/react-components/react-card/stories/src/Card/CardDefault.stories.tsx @@ -23,8 +23,8 @@ const resolveAsset = (asset: string) => { const useStyles = makeStyles({ card: { margin: 'auto', - width: '720px', - maxWidth: '100%', + maxWidth: '720px', + width: '100%', }, }); diff --git a/packages/react-components/react-card/stories/src/Card/CardDisabled.stories.tsx b/packages/react-components/react-card/stories/src/Card/CardDisabled.stories.tsx index 39274d98a0f71..fb6f15c9babb2 100644 --- a/packages/react-components/react-card/stories/src/Card/CardDisabled.stories.tsx +++ b/packages/react-components/react-card/stories/src/Card/CardDisabled.stories.tsx @@ -12,8 +12,9 @@ const useStyles = makeStyles({ gap: '16px', }, card: { - width: '400px', - maxWidth: '100%', + maxWidth: '400px', + minWidth: '230px', + width: '100%', }, }); @@ -60,7 +61,7 @@ export const Disabled = (): JSXElement => {