Skip to content

Commit

Permalink
fix: forgot passwd responsive :(
Browse files Browse the repository at this point in the history
  • Loading branch information
bhoopesh369 committed Feb 22, 2024
1 parent d1cbe68 commit 6927777
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/forgotPassword/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const ForgotPasswordPage: React.FC = () => {
<Modal
isOpen={true}
ariaHideApp={false}
className="w-[50%] h-[50%] bg-[#1d1c1c] rounded-xl absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2"
className="md:w-[50%] md:h-[50%] bg-[#1d1c1c] rounded-xl absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2"
>
<div className={styles.resetFormContainer}>
<div className={styles.formFields}>
Expand Down
4 changes: 2 additions & 2 deletions src/components/AuthLayout/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ export const Login: React.FC<SignupFormProps> = ({ setForm }) => {
isOpen={isOpen}
onRequestClose={() => setIsOpen(false)}
ariaHideApp={false}
className="w-[50%] h-[50%] bg-[#1a1a1a] rounded-xl absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2"
className="md:w-[50%] md:h-[50%] bg-[#1a1a1a] rounded-xl absolute top-1/2 left-1/2 transform -translate-x-1/2 -translate-y-1/2"
>
<div className={styles.resetFormContainer}>
<div className={styles.formFields}>
Expand All @@ -255,7 +255,7 @@ export const Login: React.FC<SignupFormProps> = ({ setForm }) => {
}}
/>
</div>
<div className={styles.formField + ' flex items-center justify-center'}>
<div className={' flex items-center justify-center'}>
{/* <Recaptcha handleFormFields={handleRecaptcha} /> */}
<ReCAPTCHA
sitekey={RECAPTCHA_SITE_KEY}
Expand Down

0 comments on commit 6927777

Please sign in to comment.