From 939951fdae2f416ac2df8309534d185b88891550 Mon Sep 17 00:00:00 2001 From: Xillians Date: Tue, 18 Jun 2024 10:39:13 +0200 Subject: [PATCH] set grid template back to normal on wide view --- src/components/project-list-card.astro | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/project-list-card.astro b/src/components/project-list-card.astro index fc97e7c7..eafc0906 100644 --- a/src/components/project-list-card.astro +++ b/src/components/project-list-card.astro @@ -52,6 +52,7 @@ const { data } = Astro.props; dl { display: grid; + grid-template-columns: 1fr 1fr; text-align: end; gap: 1rem; margin: 0; @@ -70,6 +71,7 @@ const { data } = Astro.props; } dl { text-align: start; + grid-template-columns: 1fr; } }