Design comparison
SolutionDesign
Solution retrospective
Hi, here is my solution to this challenge.
A fairly easy project, but still fun to complete.
If you have any ideas on what I can improve in the code or notice any errors, please let me know.
Feedback is welcome
Community feedback
- @danielmrz-devPosted 10 months ago
Hello @Astornek!
Your solution looks great!
I have just one suggestion:
- I was taking a look at your code and noticed that you added some properties that you didn't need. This is your code:
body { display: flex; justify-content: center; min-height: 100vh; align-items: center; overflow: hidden; /* you can remove it */ overflow-y: auto; /* you can remove it */ position: relative; /* you can remove it */ background-color: var(--Light-Gray-Blue); color: var(--Grayish-Blue); }
I marked those lines with
/* you can remove it */
because they are pretty much doing... nothing 😅. This will make your code a bit cleaner.I hope it helps!
Other than that, great job!
0
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