Skip to content

Commit

Permalink
Fix image sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentSmedinga committed Nov 13, 2023
1 parent f7fe71b commit e15d3be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ const storyConfig = {
image: 'https://picsum.photos/640/360',
},
wide: {
image: 'https://picsum.photos/480/360',
image: 'https://picsum.photos/450/360',
},
square: {
image: 'https://picsum.photos/360/360',
},
tall: {
image: 'https://picsum.photos/360/480',
image: 'https://picsum.photos/360/450',
},
'extra-tall': {
image: 'https://picsum.photos/360/640',
Expand Down
2 changes: 1 addition & 1 deletion storybook/storybook-react/src/Card/Card.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const ImageCard: Story = {
args: {
children: [
<AspectRatio key={1} ratio="wide">
<Image alt="" src="https://picsum.photos/480/360" />
<Image alt="" src="https://picsum.photos/450/360" />
</AspectRatio>,
<Card.HeadingGroup key={2} tagline="Dossier">
<Heading size="level-4">
Expand Down

0 comments on commit e15d3be

Please sign in to comment.