@tloxiuSubmitted 9 months ago
What are you most proud of, and what would you do differently next time?
Maybe the padding in the input have the problem.
Try this in the CSS:
input{
**your css**
width: 24rem;
padding: 1rem 6.2rem 1rem 1rem;
}
And in the media querry try to replace your input:
@media screen and (max-width:949px){
input{
width: 20rem;
padding: 1rem 6.2rem 1rem 1rem;
}
}