Design comparison
SolutionDesign
Community feedback
- @correlucasPosted about 2 years ago
πΎ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!
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