File tree Expand file tree Collapse file tree 8 files changed +36
-15
lines changed
_design-system/pixelarticons Expand file tree Collapse file tree 8 files changed +36
-15
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ export default function TopMindsSection({
77
77
{ ...rest }
78
78
>
79
79
< 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" >
81
81
Meet the top industry minds
82
82
</ h3 >
83
83
< TopMindCard
@@ -160,7 +160,7 @@ function TopMindCard({
160
160
< div className = "flex flex-1 items-stretch border-t border-sec-dark" >
161
161
< div className = "flex grow flex-col justify-center gap-1 p-3 sm:h-[80px]" >
162
162
< 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 >
164
164
</ div >
165
165
< div className = "flex border-l border-sec-dark max-sm:divide-x sm:flex-col sm:items-center sm:divide-y sm:border-l" >
166
166
{ SocialIconType . all . map ( type => {
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ function FiltersCombobox({
95
95
< Combobox immediate multiple value = { value } onChange = { onChange } >
96
96
< div className = { clsx ( "flex flex-col" , className ) } >
97
97
{ 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" >
99
99
{ label }
100
100
</ Combobox . Label >
101
101
) }
@@ -104,7 +104,7 @@ function FiltersCombobox({
104
104
value = { query }
105
105
onChange = { e => setQuery ( e . target . value ) }
106
106
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" ,
108
108
) }
109
109
placeholder = { placeholder }
110
110
autoComplete = "true"
@@ -206,7 +206,7 @@ function FilterComboboxOption({
206
206
return (
207
207
< div
208
208
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" ,
210
210
active && "bg-neu-100 dark:bg-neu-50" ,
211
211
) }
212
212
>
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ export function ScheduleList({
160
160
( [ date , concurrentSessionsGroup ] , index ) => (
161
161
< div
162
162
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"
164
164
>
165
165
< h3
166
166
className = "bg-neu-50 py-4 dark:bg-neu-0 lg:mb-px"
@@ -173,7 +173,7 @@ export function ScheduleList({
173
173
< div key = { `concurrent sessions on ${ sessionDate } ` } >
174
174
< div className = "mr-px flex flex-col max-lg:ml-px lg:mb-px lg:flex-row" >
175
175
< 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" >
177
177
{ format ( parseISO ( sessionDate ) , "hh:mmaaaa 'PDT'" ) }
178
178
</ span >
179
179
</ div >
@@ -207,7 +207,7 @@ function BookmarkOnSched({ year }: { year: `202${number}` }) {
207
207
href = { `https://graphqlconf${ year } .sched.com` }
208
208
target = "_blank"
209
209
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"
211
211
>
212
212
Bookmark sessions & plan your days on Sched
213
213
< svg
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ export function ScheduleSessionCard({
85
85
) ) }
86
86
</ span >
87
87
) }
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" >
89
89
< PinIcon className = "size-4 text-pri-base" />
90
90
{ session . venue }
91
91
</ span >
You can’t perform that action at this time.
0 commit comments