Skip to content

Commit

Permalink
fixed slideshow overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pookmish committed Oct 30, 2024
1 parent 273ce6b commit a4a36ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const SumCarouselParagraph = ({paragraph, ...props}: Props) => {
)}

{paragraph.sumCarouselSlides && (
<div className="relative left-1/2 mb-32 mt-0 w-screen -translate-x-1/2">
<div className="relative left-1/2 mb-32 mt-0 w-screen -translate-x-1/2 overflow-x-hidden">
<Slideshow className="mx-auto w-[calc(100%-50px)] xl:w-[calc(100%-150px)]">
{paragraph.sumCarouselSlides.map((slide, slideIndex) => {
return (
Expand Down

0 comments on commit a4a36ae

Please sign in to comment.