Skip to content

Commit

Permalink
separate grid-container from form-container
Browse files Browse the repository at this point in the history
for #20
  • Loading branch information
jlev committed Sep 21, 2020
1 parent d8f7fa1 commit af960e3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/form/form.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ function PlanForm() {
let isValid = stepValid(state)

return (
<GridContainer className="form-container">
<GridContainer>
<div className="form-container">
<ProgressBar value={currentStep} max={STEPS.length - 1} />

<Router basepath="/form">
Expand Down Expand Up @@ -200,7 +201,7 @@ function PlanForm() {
{stepError ? stepError : "Please select your answers"}
</div>
)}
</GridContainer>
</div></GridContainer>
)
}

Expand Down

0 comments on commit af960e3

Please sign in to comment.