Add aspect-ratio: 1 / 1; to ProductImageWrapper component which is responsible for display image on tile in product list and on the product page.
Change object-fit: cover; to object-fit: contain; in ProductImageWrapper because, from the user's perspective, it's crucial to see the entire product, which may not always be possible when the image has the object-fit: cover; property:
FIx #911 issue.
aspect-ratio: 1 / 1;
toProductImageWrapper
component which is responsible for display image on tile in product list and on the product page.object-fit: cover;
toobject-fit: contain;
inProductImageWrapper
because, from the user's perspective, it's crucial to see the entire product, which may not always be possible when the image has theobject-fit: cover;
property: