Design comparison
SolutionDesign
Solution retrospective
it was challenging but i had good time working on it
Community feedback
- @hitmorecodePosted over 1 year ago
Nice well done. Just a few tips
- If you use flexbox on the body with min height you can place the card in the middle of the page.
body { font-family: 'Hanken Grotesk', sans-serif; /* add these changes to the body, to place the card in the middle of the page */ min-height: 100vh; display: flex; justify-content: center; align-items: center; flex-direction: column; } .parent-component { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; /* margin-top: 5%; */ /* you can remove this line, flexbox will do the job */ }
Marked as helpful1@bluesky1992-webPosted over 1 year agoThanks a lot @hitmorecode for the feedback I will consider these changes certainly
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