From af8284627310c16d79ee9c496ab1b3eeba4804ea Mon Sep 17 00:00:00 2001 From: SrJuggernaut Date: Wed, 25 Feb 2026 18:34:37 -0600 Subject: [PATCH] feat: center grid and align items to start in home links --- src/components/pages/Home/Links.astro | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/pages/Home/Links.astro b/src/components/pages/Home/Links.astro index 24efdbd..9442462 100644 --- a/src/components/pages/Home/Links.astro +++ b/src/components/pages/Home/Links.astro @@ -30,6 +30,8 @@ const linksCollectionClass = flex({ flexDirection: 'column', gap: 'md' }) const linksGridClass = css({ display: 'grid', gridTemplateColumns: 'repeat(auto-fill, minmax(300px, 1fr))', + justifyContent: 'center', + alignItems: 'start', gap: 'md' })