Design comparison
Solution retrospective
tailwind css
What challenges did you encounter, and how did you overcome them?tailwind css
What specific areas of your project would you like help with?tailwind css
Community feedback
- @krushnasinnarkarPosted 4 months ago
Hi @Thirty-2,
Congratulations on successfully completing the challenge!
Your solution looks nice, though there are a couple of things you can improve, which I hope will be helpful:
-
Responsiveness: Your component is not responsive between screen sizes of 860px to 650px. To fix this, change your media query from
@media screen and (max-width: 650px)
to@media screen and (max-width: 860px)
. -
Width Class: Instead of using
.w-[286px]
, prefer usingmax-w-64
. This will make the card more responsive and help it adapt better to different screen sizes.
I hope you find this helpful.
Feel free to reach out if you have more questions or need further assistance.
Happy coding!
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