Skip to content
This repository was archived by the owner on Jan 26, 2026. It is now read-only.

Commit 94f9f08

Browse files
committed
chore: update style slide show section
1 parent 3d7bc5e commit 94f9f08

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/sections/slideshow/slide.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const variants = cva("w-full h-full flex justify-center items-end", {
2727
verticalPadding: {
2828
none: "",
2929
small: "py-4 md:py-6 lg:py-8",
30-
medium: "py-8 md:py-12 lg:py-16",
30+
medium: "py-16 md:py-16 lg:py-20",
3131
large: "py-12 md:py-24 lg:py-32",
3232
},
3333
gap: {
@@ -159,7 +159,7 @@ const Slide = forwardRef<HTMLDivElement, SlideProps>((props, ref) => {
159159
<div className={cn(variants({ width, gap, verticalPadding }))}>
160160
<div className="flex flex-col md:flex-row gap-4 md:gap-6 max-w-full">
161161
{/* Left Column */}
162-
<div className="flex flex-col gap-(--gap) w-1/2">
162+
<div className="flex flex-col gap-(--gap) w-full md:w-1/2">
163163
{headingContent && (
164164
<Heading
165165
content={headingContent}
@@ -187,7 +187,7 @@ const Slide = forwardRef<HTMLDivElement, SlideProps>((props, ref) => {
187187
</div>
188188

189189
{/* Right Column */}
190-
<div className="flex flex-col gap-(--gap) w-1/2 [&_.paragraph]:mx-[unset]">
190+
<div className="flex flex-col gap-(--gap) w-full md:w-1/2 [&_.paragraph]:mx-[unset]">
191191
{paragraphContent && (
192192
<Paragraph
193193
content={paragraphContent}

0 commit comments

Comments
 (0)