On my menu page, I have two images that I want to display side by side in the web browser and stacked on top of each other in a column when viewed on mobile. Currently, with framework7's row and column classes, the images are positioned next to each other in the web browser.
<div class="row">
<div class="col-50">
<a href="page1.html"><img src="css/images/image1.png" height="50%" width="50%"></a>
</div>
<div class="col-50">
<a href="page2.html"><img src="css/images/image2.png" height="50%" width="50%"></a>
</div>
</div>
However, when switching to mobile view, the images remain side by side which makes it difficult to click on them. I've been experimenting with different solutions but haven't found the right way to stack them in a column for mobile view yet.