Skip to content

Commit

Permalink
frontend: Override padding removal in Wizard container (#3175)
Browse files Browse the repository at this point in the history
  • Loading branch information
septum authored Nov 15, 2024
1 parent 2a2f4fe commit 6929601
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/packages/wizard/src/wizard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ const Header = styled(Grid)<{ $orientation: MuiStepperProps["orientation"] }>(

const Container = styled(MuiContainer)<{ $width: ContainerProps["width"] }>(
({ theme }: { theme: Theme }) => ({
padding: theme.clutch.layout.gutter,
padding: theme.clutch.useWorkflowLayout
? theme.spacing("none", "md")
: theme.clutch.layout.gutter,
height: "100%",
}),
props => ({
Expand Down

0 comments on commit 6929601

Please sign in to comment.