Submitted over 1 year ago
REST Countries API with color theme switcher (React)
@ghulamabidhassan
Design comparison
SolutionDesign
Community feedback
- @pablo-92Posted over 1 year ago
Hi Abid, nice work with the challenge! I've seen that your dark-mode background has a height of 100vh. So, if the page have more height than that, the rest of it hasn't background (making it white like looking). You can easily fix it changing this:
.main { height: 100vh; width: 100%; background-color: #fafafa; }
To this:
.main { min-height: 100vh; width: 100%; background-color: #fafafa; }
In short, you just have to change the height to min-height.
Hope this help you. Have a nice day!
Marked as helpful1
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