@@ -50,8 +50,8 @@ const Tag = ({
50
50
! text ? null : (
51
51
< span
52
52
className = { clsx (
53
- "border border-solid border-[#333333] font-semibold text-sm px-3 py-1 h-max rounded-full whitespace-nowrap " ,
54
- featured ? "bg- [#F8779D] border -[#F8779D] border-2 text-white" : "" ,
53
+ "h-max whitespace-nowrap rounded-full border border-solid border-[#333333] px-3 py-1 text-sm font-semibold " ,
54
+ featured ? "border-2 border- [#F8779D] bg -[#F8779D] text-white" : "" ,
55
55
) }
56
56
>
57
57
{ text }
@@ -86,12 +86,12 @@ export default function SessionPage({ params }: SessionProps) {
86
86
< div className = "bg-[#f4f6f8]" >
87
87
< div className = "container" >
88
88
< div className = "py-10" >
89
- < section className = "text-[#333333] min-h-[80vh] flex-col mx-auto px-2 xs:px-0 lg:justify-between justify-center md:container " >
89
+ < section className = "xs:px-0 mx-auto min-h-[80vh] flex-col justify-center px-2 text-[#333333] md:container lg:justify-between" >
90
90
< div className = "flex flex-col lg:px-0" >
91
91
< BackLink year = "2023" kind = "sessions" />
92
92
{ recordingTitle . rating > 0.5 && (
93
93
< iframe
94
- className = "aspect-video max-w-[1000px] mx-auto size-full rounded-md"
94
+ className = "mx-auto aspect-video size-full max-w-[1000px] rounded-md"
95
95
src = { `https://youtube.com/embed/${
96
96
videos . find ( e => e . title === recordingTitle . target ) ?. id
97
97
} `}
@@ -101,14 +101,14 @@ export default function SessionPage({ params }: SessionProps) {
101
101
/>
102
102
) }
103
103
104
- < div className = "mt-10 flex flex-col self-center prose lg:prose-lg sm:space-y-4" >
104
+ < div className = "prose mt-10 flex flex-col self-center lg:prose-lg sm:space-y-4" >
105
105
< div className = "space-y-5" >
106
- < div className = "flex gap-3 flex-wrap" >
106
+ < div className = "flex flex-wrap gap-3 " >
107
107
< Tag text = { eventType } featured />
108
108
< Tag text = { event . audience } />
109
109
< Tag text = { event . event_subtype } />
110
110
</ div >
111
- < h1 className = "mt-0 text-2xl lg:text-3xl font-medium mb-5 " >
111
+ < h1 className = "mb-5 mt-0 text-2xl font-medium lg:text-3xl " >
112
112
{ eventTitle }
113
113
</ h1 >
114
114
< span className = "text-[#333333]" >
@@ -119,22 +119,22 @@ export default function SessionPage({ params }: SessionProps) {
119
119
- { format ( parseISO ( event . event_end ) , "hh:mmaaaa 'PDT'" ) }
120
120
</ span >
121
121
</ div >
122
- < div className = "flex lg: flex-row flex- col sm:gap-5" >
122
+ < div className = "flex flex-col sm:gap-5 lg:flex-row " >
123
123
{ event . speakers ! . map ( speaker => (
124
124
< div
125
125
className = "flex items-center gap-3"
126
126
key = { speaker . username }
127
127
>
128
128
< Avatar
129
- className = "lg: size-[120px] size-[ 100px] rounded-full"
129
+ className = "size-[100px] rounded-full lg:size-[120px] "
130
130
avatar = { speaker . avatar }
131
131
name = { speaker . name }
132
132
/>
133
133
134
- < div className = "flex flex-col lg: gap-1 gap-1.5 " >
134
+ < div className = "flex flex-col gap-1.5 lg: gap-1" >
135
135
< a
136
136
href = { `/conf/2023/speakers/${ speaker . username } ` }
137
- className = "text-xl mt-0 font-bold text-[#333333] underline"
137
+ className = "mt-0 text-xl font-bold text-[#333333] underline"
138
138
>
139
139
{ speaker . name }
140
140
</ a >
@@ -178,7 +178,7 @@ export default function SessionPage({ params }: SessionProps) {
178
178
< div key = { path } >
179
179
< a href = { path } target = "_blank" rel = "noreferrer" >
180
180
View Full PDF{ " " }
181
- < span className = "font-sans font-light text-2xl" >
181
+ < span className = "font-sans text-2xl font-light " >
182
182
↗
183
183
</ span >
184
184
</ a >
0 commit comments