Lucas 👾• 104,400
@correlucas
Posted
👾Hello @GelcimarMoraes, Congratulations on completing this challenge!
Great code and great solution! I’ve few suggestions for you that you can consider adding to your code:
Your solution its already good, something you can do to improve the card responsiveness is create a media query for the stats section
and make each stat number stay in a different row after max-width: 350px
using a media query, here's the code for that:
@media (max-width: 350px) {
.contents {
display: flex;
margin-bottom: 1.5625rem;
flex-direction: column;
align-items: center;
}
}
✌️ I hope this helps you and happy coding!
Marked as helpful
1