Skip to content

Commit b2ac008

Browse files
committed
Fix stepper on tablets.
1 parent b15f504 commit b2ac008

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/steps/Steps.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ export const Steps = () => {
4949
activeStep={activeStep}
5050
checkIcon={CheckIcon}
5151
onClickStep={isNavigationEnabled ? onClickStep : undefined}
52+
responsive={false}
5253
>
5354
{steps.map((key) => (
5455
<Step label={translations[key].title} key={key} />

src/theme.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ const StepsComponent: typeof StepsTheme = {
3232
},
3333
stepIconContainer: {
3434
...StepsTheme.variants.circles(props).stepIconContainer,
35+
flex: "0 0 auto",
3536
bg: "background",
3637
borderColor: "background",
3738
},

0 commit comments

Comments
 (0)