Skip to content

Commit

Permalink
fix: signUp
Browse files Browse the repository at this point in the history
  • Loading branch information
bhoopesh369 committed Dec 13, 2023
1 parent 89dc297 commit f0ab941
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/AuthLayout/form.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,6 @@ div.formInput {

@media screen and (max-width: 500px) {
.registerFormContainer {
max-width: 80%;
max-width: 95%;
}
}
6 changes: 1 addition & 5 deletions src/components/AuthLayout/signup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -437,14 +437,12 @@ export const SignUp: React.FC<SignupFormProps> = ({ setForm }) => {
</div>
)}
</div>
<div className={styles.formPageNav}>
<div className={styles.formPageNav + ' max-sm:scale-105'}>
{formPage > 1 && (
<Image
className={`${styles.formPageNavArrow} ${styles.formPageNavArrowLeft}`}
src={ArrowSolid}
alt="Navigation Arrow Right"
width={20}
height={20}
onClick={() => setFormPage(formPage - 1)}
/>
)}
Expand All @@ -453,8 +451,6 @@ export const SignUp: React.FC<SignupFormProps> = ({ setForm }) => {
className={styles.formPageNavArrow}
src={ArrowSolid}
alt="Navigation Arrow Right"
width={20}
height={20}
onClick={() => validateFormPage(formPage)}
/>
)}
Expand Down

0 comments on commit f0ab941

Please sign in to comment.