Skip to content

Commit

Permalink
Improve current stories
Browse files Browse the repository at this point in the history
  • Loading branch information
luucvanderzee committed Mar 8, 2024
1 parent 1a91531 commit a423d7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type { Meta, StoryObj } from '@storybook/react';
const meta = {
title: 'Example/InitiativeCard',
render: (props) => (
<div style={{ maxWidth: '500px' }}>
<div style={{ width: '400px', height: '300px' }}>
<InitiativeCard {...props} />
</div>
),
Expand Down
3 changes: 1 addition & 2 deletions front/app/components/ProjectCard/ProjectCard.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import type { Meta, StoryObj } from '@storybook/react';
const meta = {
title: 'Example/ProjectCard',
render: (props) => (
<div style={{ maxWidth: '700px' }}>
<div style={{ width: '700px' }}>
<ProjectCard {...props} />
</div>
),
Expand All @@ -23,6 +23,5 @@ export const Large: Story = {
args: {
projectId: '2',
size: 'large',
layout: 'dynamic',
},
};

0 comments on commit a423d7c

Please sign in to comment.