Design comparison
SolutionDesign
Solution retrospective
Hi everyone!
This is actually my first project from the medium level and I feel proud of myself for finishing it.
I learned about the prefers-color-scheme media query and also about the hyphens property
.main-word { word-wrap: break-word; hyphens: auto; }
useEffect(() => {
if (window.matchMedia("(prefers-color-scheme:dark)").matches) {
setIsDark(true);
} else {
setIsDark(false);
}
}, []);
I would appreciate any feedback on how I can improve my code. Thank you in advance!
Community feedback
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