Appeal listing carousel content often breaks out of its container, so here's some CSS to give it a min-height. Will need to be adjusted per design.
@media screen and (min-width: $mobile-breakpoint) {
$minAppealCarouselHeight: 500px;
.appealListingPage {
.carouselSlide {
min-height: $minAppealCarouselHeight;
> a {
display: block;
width: 100%;
height: 100%;
min-height: $minAppealCarouselHeight;
> img {
width: 100%;
height: auto;
min-height: $minAppealCarouselHeight;
}
}
}
}
}