We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bcce8f commit e405a92Copy full SHA for e405a92
apps/web/src/components/MultistepForm/MultistepForm.tsx
@@ -32,7 +32,7 @@ const MultistepForm = <T, FH>({
32
const interviewQuestions = useFetchAllInterviewQuestions();
33
34
return (
35
- <Box>
+ <Box sx={{ marginBottom: '30px' }}>
36
<Stepper activeStep={currentStep} nonLinear>
37
{steps.map((s, i) => (
38
<Step key={i} onClick={() => setCurrentStep(i)}>
@@ -49,7 +49,7 @@ const MultistepForm = <T, FH>({
49
.map((q) => <InputHandler form={form} question={q} key={q.id} />)}
50
</Box>
51
52
+ <Box sx={{ marginTop: '30px' }}>
53
<Button
54
onClick={() => setCurrentStep((prev) => prev - 1)}
55
disabled={currentStep === 0}
0 commit comments