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.
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.