Skip to content

Commit

Permalink
fix layout for some of the header stories
Browse files Browse the repository at this point in the history
  • Loading branch information
winkerVSbecks committed Dec 12, 2024
1 parent 1e58f92 commit 6e1566f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Header/Header.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,27 +62,31 @@ export const DesktopDarkSticky: Story = {
};

export const DesktopLoggedOut: Story = {
...DesktopLight,
args: {
...DesktopLight.args,
loggedIn: false,
},
};

export const DesktopLoggedIn: Story = {
...DesktopLight,
args: {
...DesktopLight.args,
loggedIn: true,
},
};

export const DesktopLoggedOutMaintenance: Story = {
...DesktopLight,
args: {
...DesktopLight.args,
maintenanceMode: true,
},
};

export const DesktopLoggedInMaintenance: Story = {
...DesktopLight,
args: {
...DesktopLight.args,
loggedIn: true,
Expand Down

0 comments on commit 6e1566f

Please sign in to comment.