To-do App using ReactJS, SCSS, and localStorage

Solution retrospective
any feedback is welcome!
Please log in to post a comment
Log in with GitHubCommunity feedback
- @al3xback
Hi Natasya,
Looks like for the header bg is not fully cover the entire screen, esc when viewed on larger device. Try to zoom out the browser and see.
My feedback is:
- add full width to
.header__bg__image
and inheritance to.header__bg__image img
selector.
.header__bg__image { ... width: 100%; } .header__bg__image img { ... width: inherit; }
- for All, Active, Completed, and Clear Completed would be good if we set it into button element.
<button type="button">All</button> <button type="button">Active</button> <button type="button">Completed</button> <button type="button">Clear Completed</button>
Marked as helpful - add full width to
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