Skip to content

Commit a12820e

Browse files
committed
Format
1 parent e70f8d9 commit a12820e

File tree

8 files changed

+36
-15
lines changed

8 files changed

+36
-15
lines changed

src/app/conf/2025/components/top-minds/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ export default function TopMindsSection({
7777
{...rest}
7878
>
7979
<div className="flex grid-cols-2 flex-wrap [@media(444px<width<743px)]:grid [@media(width<=444px)]:flex-col [@media(width<=743px)]:justify-center [@media(width>=970px)]:*:border-b-0">
80-
<h3 className="mr-auto flex w-full grow text-pretty pb-6 pr-6 typography-h2 [@media(width>857px)]:basis-0">
80+
<h3 className="typography-h2 mr-auto flex w-full grow text-pretty pb-6 pr-6 [@media(width>857px)]:basis-0">
8181
Meet the top industry minds
8282
</h3>
8383
<TopMindCard
@@ -160,7 +160,7 @@ function TopMindCard({
160160
<div className="flex flex-1 items-stretch border-t border-sec-dark">
161161
<div className="flex grow flex-col justify-center gap-1 p-3 sm:h-[80px]">
162162
<h4 className="typography-body-md">{name}</h4>
163-
<p className="text-neu-700 typography-body-xs">{title}</p>
163+
<p className="typography-body-xs text-neu-700">{title}</p>
164164
</div>
165165
<div className="flex border-l border-sec-dark max-sm:divide-x sm:flex-col sm:items-center sm:divide-y sm:border-l">
166166
{SocialIconType.all.map(type => {

src/app/conf/2025/schedule/_components/filters.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function FiltersCombobox({
9595
<Combobox immediate multiple value={value} onChange={onChange}>
9696
<div className={clsx("flex flex-col", className)}>
9797
{label && (
98-
<Combobox.Label className="mb-1 block font-mono font-medium uppercase text-neu-900 typography-menu">
98+
<Combobox.Label className="typography-menu mb-1 block font-mono font-medium uppercase text-neu-900">
9999
{label}
100100
</Combobox.Label>
101101
)}
@@ -104,7 +104,7 @@ function FiltersCombobox({
104104
value={query}
105105
onChange={e => setQuery(e.target.value)}
106106
className={clsx(
107-
"bg-transparent leading-none text-neu-800 !outline-offset-0 typography-body-sm [text-box:trim-both_cap_alphabetic] placeholder:text-neu-600 focus:outline-none max-lg:typography-body-md",
107+
"typography-body-sm bg-transparent leading-none text-neu-800 !outline-offset-0 [text-box:trim-both_cap_alphabetic] max-lg:typography-body-md placeholder:text-neu-600 focus:outline-none",
108108
)}
109109
placeholder={placeholder}
110110
autoComplete="true"
@@ -206,7 +206,7 @@ function FilterComboboxOption({
206206
return (
207207
<div
208208
className={clsx(
209-
"relative flex cursor-default select-none items-center p-1 font-sans typography-body-sm",
209+
"typography-body-sm relative flex cursor-default select-none items-center p-1 font-sans",
210210
active && "bg-neu-100 dark:bg-neu-50",
211211
)}
212212
>

src/app/conf/2025/schedule/_components/schedule-list.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export function ScheduleList({
160160
([date, concurrentSessionsGroup], index) => (
161161
<div
162162
key={date}
163-
className="bg-neu-200 pt-px typography-body-sm dark:bg-neu-50"
163+
className="typography-body-sm bg-neu-200 pt-px dark:bg-neu-50"
164164
>
165165
<h3
166166
className="bg-neu-50 py-4 dark:bg-neu-0 lg:mb-px"
@@ -173,7 +173,7 @@ export function ScheduleList({
173173
<div key={`concurrent sessions on ${sessionDate}`}>
174174
<div className="mr-px flex flex-col max-lg:ml-px lg:mb-px lg:flex-row">
175175
<div className="relative border-neu-50 bg-neu-50 dark:bg-neu-0 max-lg:-mx-px max-lg:mt-px max-lg:border-x lg:mr-px">
176-
<span className="mt-3 inline-block w-20 whitespace-nowrap pb-0.5 pl-4 typography-body-sm lg:mr-6 lg:w-28 lg:pb-4 lg:pl-0">
176+
<span className="typography-body-sm mt-3 inline-block w-20 whitespace-nowrap pb-0.5 pl-4 lg:mr-6 lg:w-28 lg:pb-4 lg:pl-0">
177177
{format(parseISO(sessionDate), "hh:mmaaaa 'PDT'")}
178178
</span>
179179
</div>
@@ -207,7 +207,7 @@ function BookmarkOnSched({ year }: { year: `202${number}` }) {
207207
href={`https://graphqlconf${year}.sched.com`}
208208
target="_blank"
209209
rel="noreferrer"
210-
className="mb-8 block w-fit decoration-neu-400 typography-link"
210+
className="typography-link mb-8 block w-fit decoration-neu-400"
211211
>
212212
Bookmark sessions & plan your days on Sched
213213
<svg

src/app/conf/2025/schedule/_components/schedule-session-card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export function ScheduleSessionCard({
8585
))}
8686
</span>
8787
)}
88-
<span className="mt-2 flex items-center gap-0.5 typography-body-xs">
88+
<span className="typography-body-xs mt-2 flex items-center gap-0.5">
8989
<PinIcon className="size-4 text-pri-base" />
9090
{session.venue}
9191
</span>
Lines changed: 11 additions & 2 deletions
Loading
Lines changed: 5 additions & 1 deletion
Loading
Lines changed: 6 additions & 2 deletions
Loading
Lines changed: 5 additions & 1 deletion
Loading

0 commit comments

Comments
 (0)