Cover media tag is stretched on the Grid

The media tag was previously left aligned, but since today, it has been stretched to the card width.

I have this problem as well, please fix this bug softr team.

Which block type is this? Seems fine on the current Grid/card block, but this could be an older block so we can take a look to see if there is an issue.

Use this CSS to take control (only for the latest blocks):

<style>
   #list1 img[data-testid="image-inner-img"] {
        object-fit: contain !important;
        max-height: 120px !important;
        padding: 30px !important;
    }
    
    #list1 div[data-testid="image"] {
        aspect-ratio: unset !important;
        background-color: white !important;
    }
</style>

It’s fixed!

1 Like