From cfbce8d86badef03d1f52f302a66c40d7a6a0154 Mon Sep 17 00:00:00 2001 From: Jiyu215 Date: Thu, 15 Sep 2022 22:01:55 +0900 Subject: [PATCH] Issue #45 docs Modify layout padding margins - Edit title layout margins to fit header - Fix max width to fit header #45 --- src/components/faqpage/FaqPage.jsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/faqpage/FaqPage.jsx b/src/components/faqpage/FaqPage.jsx index f891293..2dd0189 100644 --- a/src/components/faqpage/FaqPage.jsx +++ b/src/components/faqpage/FaqPage.jsx @@ -13,7 +13,7 @@ const FaqContainer = styled.div` const FaqWrapper = styled.div` width:100%; - max-width:1300px; + max-width:1270px; padding:150px; margin: 0 auto; `; @@ -21,8 +21,9 @@ const FaqWrapper = styled.div` const FaqTitle = styled.div` font-size: ${fontSizes['6xl']}; margin-bottom: ${space[20]}; - padding: ${space[4]} ${space[8]}; + padding: ${space[4]} ${space[2]} ${space[4]} ${space[16]}; border-left : ${space[4]} solid ${color.gdscBlue}; + white-space : nowrap; `; const FaqText = styled.span`