Submitted over 1 year agoA solution to the Dictionary web app challenge
SCSS + React
react, sass/scss
@simokitkat

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!
Code
Loading...
Please log in to post a comment
Log in with GitHubCommunity feedback
No feedback yet. Be the first to give feedback on Islam Soliman's solution.
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