Hi Michael,
Thanks so much for your report!
Generally, both variants are technically completely different: the crop variant uses css grid and for the row height the set height for the images (you can use fit-content instead of a fixed value - then the aspect ratio is respected, but then, cropping is obsolete). The no-crop variant uses css columns, which keeps the image ratio.
No-Crop » Number of css columns/spacing is not responsive: I’ve added this to the bug tracker. You can solve this problem easily by manually setting the number of columns on the corresponding breakpoint:
/* No crop columns */
%root% ul {
column-count: 2;
}
/* No crop horizontal spacing */
%root% ul {
gap: 30px;
}
/* No crop vertical spacing */
%root% ul li {
margin-bottom: 30px;
}
Best regards,
timmse