Skip to content

Commit 46d2db6

Browse files
fix(FAQ): correct padding values for FAQ section
1 parent c0f26d4 commit 46d2db6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/organisms/FAQ/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const FAQSection: React.FC<FAQSectionProps> = ({ title, description, item
2424
const titleId = React.useId()
2525

2626
return (
27-
<section className={cn('py-20 md:py-16', className)} aria-labelledby={titleId}>
27+
<section className={cn('py-16 md:py-20', className)} aria-labelledby={titleId}>
2828
<Container>
2929
<header className="mx-auto flex max-w-4xl flex-col items-center gap-4 text-center">
3030
<h2 id={titleId} className="text-size-56 font-bold text-foreground">

0 commit comments

Comments
 (0)