newsletter-sign-up-with-success-message-main
Design comparison
Solution retrospective
All feedbacks are welcome!
Community feedback
- @NehalSahu8055Posted over 1 year ago
Hello Coder 👋.
Congratulations on successfully completing the challenge! 🎉
Few suggestions regarding design.
Main Page
➨ Replace
width:1440px;
withmax-width: 1440px;
in thebody
.➨ Add
min-height:100vh
to your body to properly center your design and removemargin
from.container
Thank You Page
➨ Remove
margin
from the.sucessPage
its not dynamically center the card use flex or grid..successPage { margin-top: 150px; }
➨ To properly center the container.
- USING FLEXBOX
{ min-height: 100vh; display: flex; align-items: center; justify-content: center; }
- USING GRID
{ min-height: 100vh; display: grid; place-items: center; }
I hope you find this helpful.
Happy coding😄
0 - @mandriva19Posted over 1 year ago
hello,
there's no submitting happening even when I enter valid email format. stuck on the initial page. also mobile viewport design is broken. good luck!
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