Stats preview card component

Please log in to post a comment
Log in with GitHubCommunity feedback
- @correlucas
👾Hello Sithum, congratulations for your new solution!
Here's some tips to improve your solution:
To make the component mobile version you need to add
flex-direction: column-reverse
see the media query I did for you:@media (max-width: 800px) { .card-container { display: flex; flex-direction: column-reverse; } }
To add the exact same purple overlay effect for the image, use
mix-blend-mode
. See the code belowimg { mix-blend-mode: multiply; opacity: 0.8;}
👋 I hope this helps you and happy coding!
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