Skip to content

Commit 4b172c4

Browse files
committed
fix(events): restore inline comma-separated speaker list
Commit 2e14900 (in PR #575) added `flow flow-xs` to the speaker list <ul>, which forced vertical stacking via the flow utility's flex- direction: column. This regressed the inline comma-separated layout established in PR #570. The parent .event-detail__speakers wrapper keeps its flow class to correctly space the heading from the list; only the <ul> loses the flow classes. Visible on /events/accessgiven-2026 among others.
1 parent 68d3e73 commit 4b172c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pages/events/[slug].astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ const jsonLd = {
320320
<h2 class="text-large">
321321
{allSpeakers.length === 1 ? 'Speaker' : 'Speakers'}
322322
</h2>
323-
<ul role="list" class="event-detail__speaker-list flow flow-xs">
323+
<ul role="list" class="event-detail__speaker-list">
324324
{allSpeakers.map((speaker) => (
325325
<li>
326326
<span>{speaker.name}</span>

0 commit comments

Comments
 (0)