From bd12a35a4d4d4131abad9c8d84a3d97d0d03d167 Mon Sep 17 00:00:00 2001 From: e26chiu Date: Tue, 13 Dec 2022 21:47:33 -0500 Subject: [PATCH] Fix SectionWrapper responsiveness --- components/SectionWrapper.module.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/components/SectionWrapper.module.css b/components/SectionWrapper.module.css index 65db0fa..e9d1cf9 100644 --- a/components/SectionWrapper.module.css +++ b/components/SectionWrapper.module.css @@ -2,3 +2,10 @@ color: var(--primary-heading); padding-left: 4rem; } + +@media screen and (max-width: 900px) { + .sectionWrapper h2 { + text-align: center; + padding-left: 0; + } +}