html, sass, js

Solution retrospective
writing js mostly by myself without any help
What challenges did you encounter, and how did you overcome them?sizing elements on smaller devices
Please log in to post a comment
Log in with GitHubCommunity feedback
- @marcfranciss
Impressive solution to this challenge! 💯
I just notice that the password container and the 'Generate' button is overflowing on small-sized screen (375px). Upon checking your css, all I can suggest are to add 'box-sizing: border-box', replace 'max-width' with 'width: 100%' and lastly resizing paddings.
* { box-sizing: border-box; / ... other css / } .password-wrap label input { width: 100%; padding: 16px 16px; Note: 'auto' is invalid when using shorthands like 'padding:' / ... other css / } .settings button { width: 100%; padding: 16px 16px; / ... other css / }
Hope this helps you somehow. Cheers!
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