From cbd60b97abad5f6700d12368a79daf5762c69c0e Mon Sep 17 00:00:00 2001 From: Gilbert Sanchez Date: Mon, 8 Dec 2025 08:07:37 -0800 Subject: [PATCH 1/2] Center align flex containers in index.module.css Added justify-content: center to multiple flex containers for better alignment. Signed-off-by: Gilbert Sanchez --- src/pages/index.module.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pages/index.module.css b/src/pages/index.module.css index 4f5ff1c..c4660c1 100644 --- a/src/pages/index.module.css +++ b/src/pages/index.module.css @@ -42,6 +42,7 @@ align-items: center; gap: 1.5rem; animation: fadeInDown 0.6s ease-out; + justify-content: center; } .heroLogo { @@ -84,6 +85,7 @@ flex-wrap: wrap; animation: fadeInDown 0.6s ease-out 0.3s backwards; align-items: center; + justify-content: center; } .badges a { @@ -145,6 +147,7 @@ .heroSubtitle { font-size: 1.25rem; + margin: auto; } .buttonGroup { From 61b08cc3d156bcd75dfd194740384e3a059cdb0a Mon Sep 17 00:00:00 2001 From: Gilbert Sanchez Date: Mon, 8 Dec 2025 08:15:02 -0800 Subject: [PATCH 2/2] Center align text in header and button group Signed-off-by: Gilbert Sanchez --- src/pages/index.module.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pages/index.module.css b/src/pages/index.module.css index c4660c1..f15347c 100644 --- a/src/pages/index.module.css +++ b/src/pages/index.module.css @@ -66,6 +66,7 @@ margin: 0; animation: fadeInDown 0.6s ease-out 0.1s backwards; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); + text-align: center; } .buttonGroup { @@ -73,6 +74,7 @@ gap: 1rem; flex-wrap: wrap; animation: fadeInDown 0.6s ease-out 0.2s backwards; + justify-content: center; } .githubIcon {