Skip to content
  • Unlock Pro
  • Log in with GitHub
Solution
Submitted over 1 year ago

SCSS + React

react, sass/scss
Islam Soliman•440
@simokitkat
A solution to the Dictionary web app challenge
View live sitePreview (opens in new tab)View codeCode (opens in new tab)

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 GitHub

Community 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
Frontend Mentor logo

Stay up to datewith new challenges, featured solutions, selected articles, and our latest news

Frontend Mentor

  • Unlock Pro
  • Contact us
  • FAQs
  • Become a partner

Explore

  • Learning paths
  • Challenges
  • Solutions
  • Articles

Community

  • Discord
  • Guidelines

For companies

  • Hire developers
  • Train developers
© Frontend Mentor 2019 - 2025
  • Terms
  • Cookie Policy
  • Privacy Policy
  • License