I have joined the discord just to ask this. I am struggling like crazy with it.
This is what my Carousel component looks like currently: ts <Carousel loop plugins={[autoplay.current]} className="hero-slider" styles={ { // slide: { // borderRadius: "20%", // // width: "40vw", // // height: "40vh", // }, // container: { // borderRadius: "50%", // }, // viewport: { // borderRadius: "20%", // }, } } withControls={false} > {heroComponent.imageSlider.map((img, index) => ( <Carousel.Slide key={index + img.title}> <Image className="!rounded-full" src={img.src} alt={img.title} /> </Carousel.Slide> ))} </Carousel> This is not what I want because it turns it into a pill shape not a circle. Also, when it slides to the next image you can clearly see that it's parent is a sharp shaped rectangle.