You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In singup page the contact number input is overflow from the box, when we change width to small devices
Steps to reproduce this bug
Open singup page and change the width to small devices or you can do inspect element and switch to mobile device.
Location of the bug
the bug was found in Singup page.
Expected behavior
the contact number field should be width 100% of thair parent element
don't use hardcode value in contact input field width is 300px you can change it to the 100% this will take 100% width of their parent element and solve the issue.
Screenshot
Screenshots (if any)
overflowing but images
Checklist
I am willing to work on this issue (optional)
I am a GSSoC'23 contributor (optional)
The text was updated successfully, but these errors were encountered:
I looked at your code and found the issue.
you are using a npm package called react-phone-input-2
so this package's default styling is width:300px; that's why your tailwindcss style w-full not applies so i made a small changes in your PhoneInput component there is props called inputStyle props so in this props we can pass width:"100%" to solve the bug.
Screenshot of default width
Hope you understand the propblem you can assing this proplem to me,
i have fix this propblem ##.
love-sonkar
added a commit
to love-sonkar/Scene-Movie-Platform
that referenced
this issue
Sep 5, 2023
Describe the bug
In singup page the contact number input is overflow from the box, when we change width to small devices
Steps to reproduce this bug
Open singup page and change the width to small devices or you can do inspect element and switch to mobile device.
Location of the bug
the bug was found in Singup page.
Expected behavior
the contact number field should be width 100% of thair parent element
don't use hardcode value in contact input field width is 300px you can change it to the 100% this will take 100% width of their parent element and solve the issue.
Screenshot
Screenshots (if any)
overflowing but images
Checklist
The text was updated successfully, but these errors were encountered: