Skip to content

Commit e405a92

Browse files
committed
add margin
1 parent 3bcce8f commit e405a92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/web/src/components/MultistepForm/MultistepForm.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const MultistepForm = <T, FH>({
3232
const interviewQuestions = useFetchAllInterviewQuestions();
3333

3434
return (
35-
<Box>
35+
<Box sx={{ marginBottom: '30px' }}>
3636
<Stepper activeStep={currentStep} nonLinear>
3737
{steps.map((s, i) => (
3838
<Step key={i} onClick={() => setCurrentStep(i)}>
@@ -49,7 +49,7 @@ const MultistepForm = <T, FH>({
4949
.map((q) => <InputHandler form={form} question={q} key={q.id} />)}
5050
</Box>
5151

52-
<Box>
52+
<Box sx={{ marginTop: '30px' }}>
5353
<Button
5454
onClick={() => setCurrentStep((prev) => prev - 1)}
5555
disabled={currentStep === 0}

0 commit comments

Comments
 (0)