Responsive design using flexbox

Solution retrospective
Hi Everyone, I am a beginner in front-end website development. I try to write clean code. Any feedbacks are most welcome regarding the ui or codebase.
Thanks! Have a great day :)
Please log in to post a comment
Log in with GitHubCommunity feedback
- @mseidel819
I think you could add a media query so that the
height: 100vh
on the body only appears on large screens. It is causing some issues with the box shadow overlapping content on mobile.Another little bonus: you could add
cursor: pointer
to your.continue-btn
class to signal that the button is clickable(even though its not connected to anything for this challenge). also, you could add a:hover
effect on the button for more interactivity. Maybe a slightly lighter color, or an opacity?.continue-btn:hover{ opacity: .8; }
Marked as helpful
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