File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,12 @@ export type Props = TimeSlot['rooms'][number] & {
99
1010const { index, name, session, time } = Astro .props
1111
12+ const isFullWidth = [" 736106" , " 736329" ].includes (session .id );
1213const builtClassName = clsx (
1314 index === 0 && ' md:col-start-2' ,
1415 index === 1 && ' md:col-start-3' ,
1516 index === 2 && ' md:col-start-4' ,
17+ isFullWidth && ' md:h-[calc(300%+0.5rem)]' ,
1618 ! session .isServiceSession ? ' bg-sky-600 hover:bg-sky-800 transition text-white' : ' bg-amber-500 text-white' ,
1719 session .isServiceSession ? ' py-2' : ' py-4' ,
1820 ' rounded-md px-4'
@@ -27,4 +29,4 @@ const builtClassName = clsx(
2729 <a href = { ` /session/${session .id } ` } class = { builtClassName } data-astro-prefetch >
2830 <Session time = { time } location = { name } { ... session } />
2931 </a >
30- )}
32+ )}
You can’t perform that action at this time.
0 commit comments