In my project, I am using styled Component and installed react-responsive-carousel . As carousel is too big ,I want to add max-height property in classname=carousel.
I tried this but it didn't worked.
const Wrapper = styled.div`
&.carousel {
max-height: 450px;
}
`
<Wrapper>
<Carousel showThumbs={false} infiniteLoop={true} autoPlay>
................
</Carousel>
</Wrapper>
How can I do that or if there is an easy way to customize. please let me know

.carouselclass? Can you show more of those computed styles?