Skip to content

Commit 60494a1

Browse files
committed
Format
1 parent 57bec3a commit 60494a1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/app/conf/2025/components/venue/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export function Venue(props: VenueProps) {
5050
</Button>
5151
</article>
5252
<div className="relative flex-1">
53-
<h3 className="mb-6 typography-h3">How to get to the venue?</h3>
53+
<h3 className="typography-h3 mb-6">How to get to the venue?</h3>
5454
<Accordion
5555
className="[&_svg]:fill-neu-900"
5656
items={[
@@ -92,7 +92,7 @@ export function Venue(props: VenueProps) {
9292
},
9393
]}
9494
/>
95-
<h3 className="my-6 typography-h3">Where to stay?</h3>
95+
<h3 className="typography-h3 my-6">Where to stay?</h3>
9696
<Accordion
9797
className="[&_svg]:fill-neu-900"
9898
items={[

src/app/conf/_design-system/accordion.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ export function Accordion({
4646
}}
4747
>
4848
<summary className="flex cursor-pointer list-none items-center justify-between gap-2 border-sec-darker p-2 px-3 focus:outline-none group-open/q:border-b dark:border-sec-dark [&::-webkit-details-marker]:hidden">
49-
<span className="select-none typography-body-lg">{item.title}</span>
49+
<span className="typography-body-lg select-none">{item.title}</span>
5050
<ArrowDown className="size-10 shrink-0 text-sec-darker group-open/q:rotate-180" />
5151
</summary>
5252
<div className="flex items-start p-3">
53-
<div className="text-pretty typography-body-md">
53+
<div className="typography-body-md text-pretty">
5454
{item.description}
5555
</div>
5656
{item.link && (

0 commit comments

Comments
 (0)