Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

Submitted

SCSS + React

P

@simokitkat

Desktop design screenshot for the Dictionary web app coding challenge

This is a solution for...

  • HTML
  • CSS
  • JS
  • API
3intermediate
View challenge

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 GitHub
Discord logo

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