@@ -50,8 +50,8 @@ const Tag = ({
5050 ! text ? null : (
5151 < span
5252 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" : "" ,
5555 ) }
5656 >
5757 { text }
@@ -86,12 +86,12 @@ export default function SessionPage({ params }: SessionProps) {
8686 < div className = "bg-[#f4f6f8]" >
8787 < div className = "container" >
8888 < 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" >
9090 < div className = "flex flex-col lg:px-0" >
9191 < BackLink year = "2023" kind = "sessions" />
9292 { recordingTitle . rating > 0.5 && (
9393 < 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"
9595 src = { `https://youtube.com/embed/${
9696 videos . find ( e => e . title === recordingTitle . target ) ?. id
9797 } `}
@@ -101,14 +101,14 @@ export default function SessionPage({ params }: SessionProps) {
101101 />
102102 ) }
103103
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" >
105105 < div className = "space-y-5" >
106- < div className = "flex gap-3 flex-wrap" >
106+ < div className = "flex flex-wrap gap-3 " >
107107 < Tag text = { eventType } featured />
108108 < Tag text = { event . audience } />
109109 < Tag text = { event . event_subtype } />
110110 </ 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 " >
112112 { eventTitle }
113113 </ h1 >
114114 < span className = "text-[#333333]" >
@@ -119,22 +119,22 @@ export default function SessionPage({ params }: SessionProps) {
119119 - { format ( parseISO ( event . event_end ) , "hh:mmaaaa 'PDT'" ) }
120120 </ span >
121121 </ 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 " >
123123 { event . speakers ! . map ( speaker => (
124124 < div
125125 className = "flex items-center gap-3"
126126 key = { speaker . username }
127127 >
128128 < Avatar
129- className = "lg: size-[120px] size-[ 100px] rounded-full"
129+ className = "size-[100px] rounded-full lg:size-[120px] "
130130 avatar = { speaker . avatar }
131131 name = { speaker . name }
132132 />
133133
134- < div className = "flex flex-col lg: gap-1 gap-1.5 " >
134+ < div className = "flex flex-col gap-1.5 lg: gap-1" >
135135 < a
136136 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"
138138 >
139139 { speaker . name }
140140 </ a >
@@ -178,7 +178,7 @@ export default function SessionPage({ params }: SessionProps) {
178178 < div key = { path } >
179179 < a href = { path } target = "_blank" rel = "noreferrer" >
180180 View Full PDF{ " " }
181- < span className = "font-sans font-light text-2xl" >
181+ < span className = "font-sans text-2xl font-light " >
182182 ↗
183183 </ span >
184184 </ a >
0 commit comments