How to override style lms.domain.com/courses?

I want custom style list course-image.

.courses-container .courses .courses-listing li .course .course-image .cover-image {
    /* height: 162px; */
}

before
Image not full

after
Image full

Where can I fix it?

Hi choltha, I think in extras.scss you can change the lms styles.

env/build/openedx/themes/theme/lms/static/sass/partials/lms/theme/_extras.scss

@Juan-Carlos Thank you, it works!
add style to _extras.scss

.courses-container .courses .courses-listing li .course .course-image .cover-image {
    height: auto !important;

}
1 Like