Skip to content

Commit

Permalink
Fix grid padding in Footer and Highlight stories
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentSmedinga committed Nov 25, 2023
1 parent a5cda39 commit d34b649
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions storybook/storybook-react/src/Footer/Footer.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const Default: Story = {
<VisuallyHidden>
<Heading>Colofon</Heading>
</VisuallyHidden>
<Grid>
<Grid paddingVertical="medium">
<Grid.Cell span={3}>
<div style={{ display: 'grid', gap: '2.5rem' }}>
<Heading level={2} size="level-4" inverseColor>
Expand Down Expand Up @@ -81,7 +81,7 @@ export const Default: Story = {
</UnorderedList>
</div>
</Grid.Cell>
<Grid.Cell span={3} start={{ narrow: 1, medium: 1, wide: 9 }}>
<Grid.Cell span={{ narrow: 4, medium: 8, wide: 4 }} start={{ narrow: 1, medium: 1, wide: 9 }}>
<div style={{ display: 'grid', gap: '2.5rem' }}>
<Heading level={2} size="level-4" inverseColor>
Onderzoek en Statistiek
Expand Down Expand Up @@ -116,7 +116,7 @@ export const Default: Story = {
<VisuallyHidden>
<Heading level={2}>Over deze website</Heading>
</VisuallyHidden>
<Grid>
<Grid paddingVertical="small">
<Grid.Cell fullWidth>
<PageMenu>
<PageMenu.Link href="/">Privacy</PageMenu.Link>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const meta = {
},
render: ({ color }) => (
<Highlight color={color}>
<Grid>
<Grid paddingVertical="medium">
<Grid.Cell fullWidth>
<Blockquote inverseColor={!color || !['green', 'yellow'].includes(color)}>
We kunnen in heel Nederland schoolpleinen creëren waar kinderen worden uitgedaagd om samen te spelen en te
Expand Down

0 comments on commit d34b649

Please sign in to comment.