Multi Step Form using NextJS
Design comparison
Community feedback
- @wendyhamelPosted almost 2 years ago
Hi! Nice solution.
I noticed some minor layout improvements you could make. On mobile, you can change the
overflow:scroll;
on your form. On some devices it can cause padding issues even if there is no scroll-bar. If you change it tooverflow:auto;
it will still show the scroll barrs when it needs to, but will not break the layout. The rounded corners on the bottom of the form are hidden on mobile. And the shadow of the card is not visible on desktop. If you remove the padding bottom from the form and move the box-shadow from your style_box` div to the form, it works nicely.Hope this helps!
Happy coding!
0@HanSeongLeePosted almost 2 years ago@wendyhamel
I fixed them. Thank you for your help!
0@wendyhamelPosted almost 2 years ago@HanSeongLee Very good! Nice job! I like it! Although I still see the
overflow:scroll
setting, but the corners and shadows show nicely now.0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord