Hey, I would like to have a carousel with images and videos embedded via vimeo. The carousel is set to 100vh Fixed Height und Fill slides, that works perfectly for the images but has no affect on the videos.
I also added css trying to fix this but without success so far:
.recap-carousel {
height: 100vh;
}
.recap-carousel .lay-carousel-wrap {
height: 100vh !important;
}
.recap-carousel img,
.recap-carousel video {
object-fit: cover;
height: 100vh !important;
width: 100%;
}
.flickity-viewport {
height: 100vh;
}
Has anyone had the same issue before?