Skip to content

Commit c40d8df

Browse files
committed
Make the FAQ work better on medium screens
1 parent 463cd35 commit c40d8df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/conf/2025/faq.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export function FAQ({ className }: { className?: string }) {
200200
<section
201201
id="faq"
202202
className={clsx(
203-
"gql-conf-section flex gap-10 max-md:flex-col xl:gap-24 2xl:gap-36",
203+
"gql-conf-section flex gap-10 max-lg:flex-col xl:gap-24 2xl:gap-36",
204204
className,
205205
)}
206206
>
@@ -215,7 +215,7 @@ export function FAQ({ className }: { className?: string }) {
215215
</p>
216216
</div>
217217

218-
<div className="grow space-y-4 md:space-y-6">
218+
<div className="grow space-y-4 lg:space-y-6">
219219
{FAQS.map((faq, index) => (
220220
<details
221221
open={index === 0}

0 commit comments

Comments
 (0)