When I view my React app on mobile there is always extra space to the right:
https://dsousadev.github.io/23imgs/
I can't see this extra space when I use dev tools to simulate a mobile view, but when I view the site on a variety of mobile browsers the space is there and the app doesn't auto fit.
Here's the current CSS in my media query:
@media all and (max-width: 414px) {
.ImageCard,
#CardImage {
width: 314px;
}
#CardImage {
height: 314px;
}
ul {
font-size: 1.2rem;
padding: 0 15px;
}
}



.ImageCard) and your media queries just doesn't work well with that specific mobile device. That means it needs more work.