Design comparison
Community feedback
- @correlucasPosted over 2 years ago
👾 Hello Ruby, congratulations for your solution!
You did everything good, the grid is set correctly and also the mobile version is working fine, the columns are changing after the breakpoint.
You can do some little adjustments to improve the solution.
1.The card alignment, note that the card is centered at all, to fix that all you need to do is use flexbox inside the class called
.wrap;
and usemin-height: 100vh;
.wrap { display: flex; min-height: 100vh; font-family: "Barlow", sans-serif; font-size: 13px; background-color: hsl(210, 46%, 95%); align-items: center; justify-content: center; }
2.Work the fine details, for example, the card purple and black has a small detail on the picture photo, theres a cyan border around the profile photo. You can add this using
border: 4px solid cyan;
.The rest is all fine, congratulations!
Hope it helps, happy coding!
Marked as helpful0@RubyMary18Posted over 2 years ago@correlucas Hello Lucus, Thank you so much for your valuable feedback. The details you shared with me about areas where I can improve is really helpful. I hope in future project I rectify this type of errors.
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