Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions src/components/schedule/day.astro
Original file line number Diff line number Diff line change
Expand Up @@ -603,14 +603,14 @@ const dateText = format(date, "eeee - do MMMM");
grid-column: 3 / 6;
position: relative;
display: block;

&::after {
}
.posters::after {
content: "";
display: block;
/*padding: 4px 8px;*/
}

h2
.posters h2
{
background: linear-gradient(#F8F7F6, #F2E2D3 );
padding: 4px 8px;
Expand All @@ -620,18 +620,17 @@ const dateText = format(date, "eeee - do MMMM");
font-size: 0.8em;
}

> div {
.posters > div {
display: flex;

& > :global(*) {
flex: 1;
}
}

& :global(.session.poster) {
.posters :global(.session.poster) {
display: flex;
}
}
}
</style>

Expand Down