Skip to content

Commit 418cf6a

Browse files
committed
fix misaligned cfp form back button
1 parent a8e969d commit 418cf6a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

components/Form/Cfp/stepFour.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function StepFour({ setStep, setForm, data }: CfpStepProps) {
5959
AsyncAPI Initiative Code of Conduct
6060
</a>
6161
</div>
62-
<div className="float-right mt-3 lg:flex lg:flex-col-reverse lg:w-full">
62+
<div className="float-right mt-3 flex lg:flex-col-reverse lg:w-full">
6363
<a
6464
className="mr-10 text-dark-600 cursor-pointer lg:text-center lg:pl-10 lg:mt-5"
6565
onClick={() => !disabled && setStep(null, 3)}

components/Form/Cfp/stepThree.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function StepThree({ setStep, setForm, data }: CfpStepProps): JSX.Element {
6767
multi={undefined}
6868
dataTest="step-three-level"
6969
/>
70-
<div className="float-right mt-3 lg:flex lg:flex-col-reverse lg:w-full">
70+
<div className="float-right mt-3 flex lg:flex-col-reverse lg:w-full">
7171
<a
7272
className="mr-10 text-dark-600 cursor-pointer lg:text-center lg:pl-10 lg:mt-5"
7373
onClick={() => setStep(null, 2)}

components/Form/Cfp/stepTwo.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function StepTwo({ setStep, setForm, data }: CfpStepProps): JSX.Element {
3232
onChange={(e) => setForm({ ...data, Description: e.target.value })}
3333
data-test="step-two-description"
3434
/>
35-
<div className="float-right mt-3 lg:flex lg:flex-col-reverse lg:w-full">
35+
<div className="float-right flex items-center lg:flex-col-reverse lg:w-full">
3636
<a
3737
className="mr-10 text-dark-600 cursor-pointer lg:text-center lg:pl-10 lg:mt-5"
3838
onClick={(e) => setStep(null, 1)}

0 commit comments

Comments
 (0)