Skip to content

Commit

Permalink
accessibility fix
Browse files Browse the repository at this point in the history
  • Loading branch information
randall-krauskopf authored Nov 15, 2024
1 parent e2203e4 commit 4b4b916
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/react/src/PageLayout/PageLayout.dev.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ export const Default: StoryFn = args => (
>
<PageLayout.Header
padding={args['Header.padding']}
sx={{color: 'blue'}}
sx={{color: 'var(--fgColor-success)'}}
divider={{
narrow: args['Header.divider.narrow'],
regular: args['Header.divider.regular'],
Expand All @@ -366,7 +366,7 @@ export const Default: StoryFn = args => (
<Placeholder height={args['Header placeholder height']} label="Header" />
</PageLayout.Header>
<PageLayout.Content
sx={{color: 'blue'}}
sx={{color: 'var(--fgColor-success)'}}
width={args['Content.width']}
padding={args['Content.padding']}
hidden={{
Expand All @@ -378,7 +378,7 @@ export const Default: StoryFn = args => (
<Placeholder height={args['Content placeholder height']} label="Content" />
</PageLayout.Content>
<PageLayout.Pane
sx={{color: 'blue'}}
sx={{color: 'var(--fgColor-success)'}}
position={{
narrow: args['Pane.position.narrow'],
regular: args['Pane.position.regular'],
Expand All @@ -403,7 +403,7 @@ export const Default: StoryFn = args => (
<Placeholder height={args['Pane placeholder height']} label="Pane" />
</PageLayout.Pane>
<PageLayout.Footer
sx={{color: 'blue'}}
sx={{color: 'var(--fgColor-success)'}}
padding={args['Footer.padding']}
divider={{
narrow: args['Footer.divider.narrow'],
Expand Down

0 comments on commit 4b4b916

Please sign in to comment.