Regardless of the Cover Style chosen under any platform settings I notice box art still gets cropped to match the cover style aspect ratio rather than display the true aspect of the image. I assume this is on purpose to match that cover style but the cropping unfortunately makes the image look worse IMO. While looking through CSS properties for the image I noticed the following:
.v-img__img--cover {
object-fit: cover;
}
Can object-fit: scale-down be used in place of cover to display the correct aspect ratio of the supplied image to eliminate cropping?
Regardless of the Cover Style chosen under any platform settings I notice box art still gets cropped to match the cover style aspect ratio rather than display the true aspect of the image. I assume this is on purpose to match that cover style but the cropping unfortunately makes the image look worse IMO. While looking through CSS properties for the image I noticed the following:
Can
object-fit: scale-downbe used in place ofcoverto display the correct aspect ratio of the supplied image to eliminate cropping?