@JohnJaramillodevSubmitted over 1 year ago
Hello.!! Please feel free to give feedback I want to improve
Hello.!! Please feel free to give feedback I want to improve
Looks great!
When it comes to responsiveness, the card looks a bit wonky when you get to screen sizes right under the threshold of your media query. One fix could be to use the min()
function when setting the width of the card instead of just 85% (e.g. min(500px, 85%)
). This would make it so the width of the card would be whatever is lowest of 500px and 85%. If I'm not mistaken, this also means you don't have to specify a width in the media query.