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

html, sass, js

P
AdamullaOsasā€¢ 390

@AdamullaOsas

Desktop design screenshot for the Password generator app coding challenge

This is a solution for...

  • HTML
  • CSS
  • JS
3intermediate
View challenge

Design comparison


SolutionDesign

Solution retrospective


What are you most proud of, and what would you do differently next time?

writing js mostly by myself without any help

What challenges did you encounter, and how did you overcome them?

sizing elements on smaller devices

Community feedback

P
Marc Francisā€¢ 520

@marcfranciss

Posted

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!

0

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