Responsive page with CSS flexbox

Solution retrospective
I need help with the desktop view.
Please log in to post a comment
Log in with GitHubCommunity feedback
- @lwebbz
Your mobile solution is great, well done!
For the desktop layout, you can add a media query that changes the flex direction to row once the viewport goes beyond a certain width, with something like this.
@media (min-width: 760px) { main { display: flex; flex-direction: row; } }
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