Need help in removing spacing for debut theme

Hi and good afternoon, I need help help in removing the spacing between our product image and the description for our mobile.

We would like if the spacing is smaller.

thank you :slightly_smiling_face:

Please add below css in bottom of assets/theme.scss.css file

@media only screen and (max-width: 749px)

.thumbnails-slider–active .product-single__thumbnails-item.slick-slide {
height: auto;

}
Thank you.

@ddcollective Go to assets > theme.scss.css file and paste below css at bottom of file.

@media only screen and (max-width: 749px)
.thumbnails-slider--active .product-single__thumbnails-item.slick-slide

{
height: auto !important;
}