Design comparison
SolutionDesign
Solution retrospective
All comments and suggestions are wholeheartedly welcome
Community feedback
- @Bibiwei-PerePosted over 1 year ago
Hi
Congratulations on completing this challenge
Firstly, you design is not responsive. It's okay for mobile devices but not for desktop To resolve this add the following CSS to your .card
.card { max-width: 400px; }
Then a media query for the mobile design
@media (max-width: 760px) {
.card { max-width: 300px; }
Overall, you did a great job 👍
Hope you find this helpful
Marked as helpful0@Michael-SenkaoPosted over 1 year ago@Bibiwei-Pere thanks for your comment.🙏 I will surely work on that.
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