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
For modals with larger forms, such as on the add/edit address form, if I shrink my desktops viewport height the form overflows from the modal. This creates an awkward situation where the user may not be able to submit the form, if the viewport height is too small. See the screenshot for how the overflow looks right now
Steps to reproduce
Login on /us/account
Navigate to the addresses page on /us/account/addresses
Click the "New address" button
Shrink the viewport height so it is less than 650px
Suggestions for improvement
Add a scrollbar when needed. Wrap the content inside of the modal with a div and style it with overflow-y: auto. Also style the modal outer with overflow: hidden;. This way the rounded corners are preserved.
The text was updated successfully, but these errors were encountered:
Description
For modals with larger forms, such as on the add/edit address form, if I shrink my desktops viewport height the form overflows from the modal. This creates an awkward situation where the user may not be able to submit the form, if the viewport height is too small. See the screenshot for how the overflow looks right now
Steps to reproduce
/us/account
/us/account/addresses
Suggestions for improvement
overflow-y: auto
. Also style the modal outer withoverflow: hidden;
. This way the rounded corners are preserved.The text was updated successfully, but these errors were encountered: