Design comparison
SolutionDesign
Solution retrospective
What are you most proud of, and what would you do differently next time?
updated solution, design is now centered.
Community feedback
- Account deleted
Hey 😊
Congratulations on completing this wonderful QR code challenge 🎉🎉
center the element
Looks like your main container is not centred properly and you used flex to center it and that's a great way to center the element but you forgot to used a some properties
body { display: flex; justify-content: center; align-item: center; min-height: 100vh; background: #d6e2f0; font-family: 'Outfit', sans-serif; margin: 0; } .container { /* margin-top: 5%; */ width: 290px; height: 500px; padding: 16px; /* border: 1px solid blue; */ border-radius: 15px; /* margin-left: 20px; */ background: white; }
I hope this might be helpful for you
Happy Coding 😀
1
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