I am using react responsive carousel and it's rendering weird
render() {
return (
<div className="slider-container">
<Carousel className="carousel-style" showArrows={true} showThumbs={false} showStatus={false}>
{this.generateCards()}
<div className="slider-item-div">
Test
</div>
</Carousel>
</div>
);
}
Here's the CSS
.slider-container {
width: 100%;
height: 100%;
}
.slider-item-div {
padding: 20px;
background-color: white;
text-align: center;
height: 100%;
width: 100%;
}
.carousel-style {
height: 100% !important;
}
and unfortunately this is what it renders as
I would like to have the height == 100% and fill the screen. Also I'd like the right and left arrows to be show without hovering over them like here: http://react-responsive-carousel.js.org/#demos