From a4c304d2874f749f7d7112552b7dec914474af7f Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Fri, 30 Jan 2026 15:14:31 +0000 Subject: [PATCH] Center last row cards in Community section - Change community-grid from CSS grid to flexbox - Add justify-content: center for centering - Add flex sizing for responsive card layout Co-Authored-By: Claude Opus 4.5 --- index.html | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 5408dab..c728e5f 100644 --- a/index.html +++ b/index.html @@ -600,9 +600,16 @@ /* Community Section */ .community-grid { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); + display: flex; + flex-wrap: wrap; gap: 2rem; + justify-content: center; + } + + .community-grid .community-card { + flex: 0 1 calc(33.333% - 1.5rem); + min-width: 280px; + max-width: 380px; } .community-card {