diff --git a/src/components/schedule/day.astro b/src/components/schedule/day.astro index ee90e2205..58435089a 100644 --- a/src/components/schedule/day.astro +++ b/src/components/schedule/day.astro @@ -543,47 +543,53 @@ const endStart = numberToTime(lastEndTime); gridTemplateColumns: `80px repeat(${ROOMS.length}, minmax(90px, 1fr))`, }} > - {posters.length > 0 && ( -
-

Posters ({posters[0].rooms.join(", ")})

-
- {posters.map((session) => { - const style = {}; - return ( -
- -
- ); - })} + {lunchSideEvents.length > 0 && ( +
+
+ Also During Lunch
+
    + {lunchSideEvents.map((session) => ( +
  • + + {session.title} + + {session.title.toLowerCase() === + "pyladies lunch" && ( + + — 2nd Floor Red Carpet, starting 13:20 + + )} +
  • + ))} +
)} - {lunchSideEvents.length > 0 && ( + {posters.length > 0 && ( <>
-
-
- Also During Lunch +
+

Posters ({posters[0].rooms.join(", ")})

+
+ {posters.map((session) => { + const style = {}; + return ( +
+ +
+ ); + })}
-
)} @@ -919,6 +925,12 @@ const endStart = numberToTime(lastEndTime); margin-bottom: 2rem; } + .pyladies-location { + font-weight: 400; + color: var(--color-text-secondary); + font-size: 0.9rem; + } + .sched-posters-list a { display: inline-block; border: 1px solid var(--border);