Design comparison
SolutionDesign
Solution retrospective
Any suggestions are welcome.
Community feedback
- @tedikoPosted over 3 years ago
Hello, Siddhesh Kamble! 👋
Congrats on finishing another challenge! 🎉 Your solution looks very good and also responds well. Here's my few tips:
- Your
.container
is sticking to borders on 375px width resolution. This is because you hard codewidth
on your.sign-up
button. Change it towidth: 100%; max-width: 360px;
instead. After that you should add somepadding
to.container
so it doesn't stick to borders.width: 100%; padding: 0 24px; max-width: 405px
. - In case you want to center button on resolutions bigger than 375px and less than 768px use
margin: 30px auto 0 auto;
.
Good luck with that, have fun coding! 💪
Marked as helpful1 - Your
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