The space between my images on mobile is way too large: mobile version It looks okay on Dev Tools: dev tools version
HTML:
<div class="container-fluid">
<!-- <br> -->
<div class="row">
<img class="col-sm-6 col-md-4" src="digart/fire_cryinggirl.png" alt="girl crying underneath fire">
<img class="col-sm-6 col-md-4" src="digart/ko_munyeong.png" alt="chibi-style ko munyeong">
<!-- mindprison hidden on small-->
<img class="col-sm-6 col-md-4 d-sm-none d-md-block" src="digart/mind_prison.png" alt="brain in a prison">
</div>
</div>
CSS:
img {
object-fit: contain;
margin-bottom: 5vh;
}
I've already tried using a media query with max-width and decreasing the margin-bottom, but there is no change to the mobile version.