@@ -67,21 +67,21 @@ export function LongSessionCard({
67
67
aria-label = { `Read more about "${ eventTitle } " by ${ session . speakers ?. [ 0 ] ?. name || "Speaker" } ` }
68
68
/>
69
69
70
- < div className = "flex flex-col gap-6 p-6" >
70
+ < div className = "flex flex-col gap-6 p-4 lg:p- 6" >
71
71
< div className = "flex items-center justify-between gap-6" >
72
72
< SessionTags session = { session } />
73
73
{ video && (
74
74
< div className = "flex items-center gap-2 border border-neu-400 bg-neu-100 px-2 py-1" >
75
75
< span className = "typography-menu text-neu-900" >
76
76
{ /* todo: find year */ }
77
- GraphQLConf 2024
77
+ 2024
78
78
</ span >
79
79
</ div >
80
80
) }
81
81
</ div >
82
82
83
83
< div className = "flex flex-col gap-4" >
84
- < div className = "min-h-[60px ]" >
84
+ < div className = "min-h-[32px ]" >
85
85
< h3 className = "typography-body-lg text-neu-900 2xl:text-2xl" >
86
86
{ eventTitle }
87
87
</ h3 >
@@ -121,7 +121,7 @@ export function LongSessionCard({
121
121
{ /* todo: past session no recording variant */ }
122
122
123
123
{ video ? (
124
- < footer className = "px-6 pb-6 pt-0 " >
124
+ < footer className = "p-4 pt-0 lg: px-6 lg: pb-6" >
125
125
< Button
126
126
href = { `https://youtube.com/embed/${ video . id } ` }
127
127
variant = "primary"
@@ -133,7 +133,7 @@ export function LongSessionCard({
133
133
</ footer >
134
134
) : (
135
135
< footer className = "flex items-center border-t border-neu-200 text-neu-800 dark:border-neu-100" >
136
- < div className = "flex flex-1 items-center gap-6 border-r border-neu-200 p-6" >
136
+ < div className = "flex flex-1 items-center gap-6 border-r border-neu-200 p-4 dark:border-neu-100 lg:p- 6" >
137
137
< div className = "contents flex-col md:max-xl:flex" >
138
138
< div className = "flex items-center gap-0.5 whitespace-pre" >
139
139
< CalendarIcon className = "size-4 shrink-0 -translate-y-px text-sec-dark" />
@@ -150,7 +150,7 @@ export function LongSessionCard({
150
150
</ div >
151
151
</ div >
152
152
{ /* TODO: Actually add to calendar. Ensure we show this only on this year's events. */ }
153
- < button className = "relative z-[2] flex h-full flex-row items-center justify-center gap-0.5 px-6 py- 4 text-neu-800 ring-inset ring-neu-400 hover:bg-sec-base/[.035] hover:ring-1 dark:ring-neu-100" >
153
+ < button className = "relative z-[2] flex h-full flex-row items-center justify-center gap-0.5 p- 4 text-neu-800 ring-inset ring-neu-400 hover:bg-sec-base/[.035] hover:ring-1 dark:ring-neu-100 lg:px-6 " >
154
154
< PlusIcon className = "size-4 shrink-0 text-sec-dark" />
155
155
< span className = "typography-body-xs" > Add to calendar</ span >
156
156
</ button >
0 commit comments