diff --git a/components/shared/Carousel.tsx b/components/shared/Carousel.tsx index 76e6cbbeb8..7569e9096a 100644 --- a/components/shared/Carousel.tsx +++ b/components/shared/Carousel.tsx @@ -134,13 +134,38 @@ const CarouselContent = React.forwardRef + <>
-
+ ref={carouselRef} + className={clsx( + "overflow-hidden", + orientation === "horizontal" ? "overflow-x-auto" : "overflow-y-auto", + "no-scrollbar" + )} + > +
+
+ + + ); } );