Pipeline theme - Buy It With Upsell Image Isnt 1:1 aspect ratio/shows up narrow on product page

Hello everyone, here’s a link to my shop www.mythicalmerch.net

Here is a page example that has the product cross-sell/upsell feature enabled and is displaying the image narrow even when i change the main page image size to the smallest setting. Please advise how/where to edit the code for the upsell image or if there is a setting I’m missing, Thanks everyone!

https://www.mythicalmerch.net/products/king-and-queen-undead-zombies-crown-enamel-pin-set2?_pos=1&_sid=056415d1f&_ss=r

Hi @Mythical-Merch ,

Go to Assets > theme.css and paste this at the bottom of the file:

.upsell__image {
	width: 30% !important;
    height: auto !important;
}
.upsell__image .upsell__image__inner{
	width: 100% !important;
    height: auto !important;
}
.upsell__content {
	width: 70% !important;
}

Hope it helps!