Skip to content

Commit f37ec2c

Browse files
committed
Tweak spacing
1 parent f02232e commit f37ec2c

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

src/app/conf/2025/faq.tsx

+12-7
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,12 @@ const FAQS = [
3030
If you have a group of 5 or more people, you can receive a 10% discount
3131
on all passes. All pass types must be the same, and all registrations
3232
must be processed under one group registration and must be paid with the
33-
same credit card. To create a group, select “Add Another Person” to your
34-
registration. When 5 or more people are added the 10% discount will be
35-
automatically applied.{" "}
33+
same credit card.
34+
<br />
35+
<br />
36+
To create a group, select “Add Another Person” to your registration.
37+
When 5 or more people are added the 10% discount will be automatically
38+
applied.{" "}
3639
<a
3740
className="typography-link"
3841
href="mailto:[email protected]"
@@ -99,6 +102,8 @@ const FAQS = [
99102
LFX dashboard
100103
</a>{" "}
101104
by navigating to the "Past Events" section in the LF Events column.
105+
<br />
106+
<br />
102107
Please Note: We verify attendance through the registration system, and
103108
certificates will only be available for download after the event is
104109
completed.
@@ -165,7 +170,7 @@ const FAQS = [
165170
question: "Looking for more?",
166171
answer: (
167172
<>
168-
Checkout our{" "}
173+
Check out our{" "}
169174
<a className="typography-link" href="/conf/2025/resources">
170175
Resources
171176
</a>{" "}
@@ -210,20 +215,20 @@ export function FAQ({ className }: { className?: string }) {
210215
</p>
211216
</div>
212217

213-
<div className="space-y-4 md:space-y-6">
218+
<div className="grow space-y-4 md:space-y-6">
214219
{FAQS.map((faq, index) => (
215220
<details
216221
open={index === 0}
217222
key={index}
218-
className="group/q border border-neu-400"
223+
className="group/q w-full border border-neu-400 @container"
219224
>
220225
<summary className="flex cursor-pointer list-none items-center justify-between gap-2 border-neu-400 p-2 px-3 focus:outline-none group-open/q:border-b [&::-webkit-details-marker]:hidden">
221226
<span className="select-none typography-body-lg">
222227
{faq.question}
223228
</span>
224229
<ArrowDown className="size-10 text-sec-darker group-open/q:rotate-180" />
225230
</summary>
226-
<p className="p-3 typography-body-md">{faq.answer}</p>
231+
<div className="p-3 typography-body-md">{faq.answer}</div>
227232
</details>
228233
))}
229234
</div>

src/app/conf/2025/pixelarticons/chevron-right.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ export function ChevronRight(props: React.SVGProps<SVGSVGElement>) {
88
{...props}
99
>
1010
<path
11-
fill-rule="evenodd"
12-
clip-rule="evenodd"
11+
fillRule="evenodd"
12+
clipRule="evenodd"
1313
d="M6.66666 13.3332H5.33333V2.6665H6.66666V3.99984H7.99999V5.99984H9.33333V7.33317H10.6667V8.6665H9.33333V9.99984H7.99999V11.9998H6.66666V13.3332Z"
1414
/>
1515
</svg>

0 commit comments

Comments
 (0)