Design comparison
Solution retrospective
Feedbacks are welcome
Community feedback
- @correlucasPosted about 2 years ago
👾Hello @samarth-bytes, Congratulations on completing this challenge!
Great code and great solution! I’ve few suggestions for you that you can consider adding to your code:
For future projects, think about using relative units as
rem
orem
instead ofpx
to improve your performance by resizing fonts between different screens and devices.To improve your component overall responsiveness, something you can do its to create 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) { .foot { display: flex; justify-content: space-around; align-items: center; border-top: 1px solid hsla(227, 10%, 46%,0.4); padding-top: 20px; flex-direction: column; } }
✌️ I hope this helps you and 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