Order summary component

Solution retrospective
I'm trying to do every newbie challenge as you can see! I had no particular problem with this.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @correlucas
👾Hello @francxrusso, Congratulations on completing this challenge!
Great code and great solution! I’ve few suggestions for you that you can consider adding to your code:
Make your solution SUPER RESPONSIVE, creating a media query to save space in the
pricing section
to make each information in a different row. Here’s the code for this media query.@media (max-width: 350px) { .price { display: inline-flex; max-height: 20rem; text-align: left; background-color: hsl(225, 100%, 98%); border-radius: 0.6rem; padding: 0rem 0.6rem; margin: 0rem 1rem; flex-direction: column; } }
✌️ I hope this helps you and happy coding!
Marked as helpful
Join 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