From 799dae91e9370192ce53c9f7fc0063caafb84318 Mon Sep 17 00:00:00 2001 From: Chris La Date: Sat, 28 Mar 2026 20:38:07 -0700 Subject: [PATCH] fix: center open-source section cards after Discord link removal Update the .os-links grid from 4 columns to 3 and reduce max-width from 720px to 600px so the remaining 3 cards display evenly centered. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/pages/index.astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index 5aeec68..a39e29c 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1473,9 +1473,9 @@ strawpot gui" .os-links { display: grid; - grid-template-columns: repeat(4, 1fr); + grid-template-columns: repeat(3, 1fr); gap: 1rem; - max-width: 720px; + max-width: 600px; margin: 2rem auto 0; }