From 21e5dff210a169c9cf3481fc2f5731568e77d7f9 Mon Sep 17 00:00:00 2001 From: Andy Smith Date: Wed, 21 May 2025 01:09:11 -0500 Subject: [PATCH] Ensure all content starts in the correct column --- app/assets/stylesheets/events.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/events.css b/app/assets/stylesheets/events.css index 68c61d5a7..d96dc293e 100644 --- a/app/assets/stylesheets/events.css +++ b/app/assets/stylesheets/events.css @@ -71,6 +71,10 @@ @media (min-width: 640px) { display: contents; } + + &:nth-of-type(1) > * { grid-column-start: 1; } + &:nth-of-type(2) > * { grid-column-start: 2; } + &:nth-of-type(3) > * { grid-column-start: 3; } } .events__column-header {