Design comparison
SolutionDesign
Solution retrospective
Who helps me fix the bug? when I zoom out the screen I see the sidebar animation . Thank you!
Community feedback
- @LeonardoMancilhaPosted over 2 years ago
Hello, Alessio! It would help if you replaced margin-top: 1em with 14px on line 36 of the file "style.scss" on .header. These are your settings:
.header { display: flex; align-items: center; font-size: 15px; margin-top: 1em; width: 100%; }
Put margin-top with 14px:
.header { display: flex; align-items: center; font-size: 15px; margin-top: 14px; width: 100%; }
If you do it, your problem is going to be solved, in other words, the sidebar.
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