I cannot find a way how to make my layout stay the same on the phone. Having 6 or at least 3 images in a row on the gallery block. Squarespace only allows to have 2. I could do it on a product page tho via this code but cant fix it via gallery page
<style>
/* Product 2 columns mobile */
@media screen and (max-width:767px) {
.products.collection-content-wrapper .list-grid {
display: grid;
grid-template-columns: repeat(4,minmax(0,1fr));
grid-column-gap: 10px;
}
}
</style>
Also adjust all these mad gaps
Any ideas?