From 92cab04c4801ce488a6a89df111cec1ef798188c Mon Sep 17 00:00:00 2001 From: Giwon Date: Wed, 6 Nov 2024 00:24:19 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=ED=95=98=EB=8B=A8=20=EC=A2=8C?= =?UTF-8?q?=EC=9A=B0=20=EC=8A=A4=ED=81=AC=EB=A1=A4=EB=B0=94=20=EC=A0=9C?= =?UTF-8?q?=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/layouts/MainLayout.jsx | 2 ++ src/pages/MainPage.jsx | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/layouts/MainLayout.jsx b/src/components/layouts/MainLayout.jsx index bc557da..10ae575 100644 --- a/src/components/layouts/MainLayout.jsx +++ b/src/components/layouts/MainLayout.jsx @@ -7,6 +7,8 @@ export const Main = styled.main` width: 100%; height: 100%; margin: 0px auto; + + overflow-x: hidden; `; export const MainLayout = () => { diff --git a/src/pages/MainPage.jsx b/src/pages/MainPage.jsx index e0edeec..26f7032 100644 --- a/src/pages/MainPage.jsx +++ b/src/pages/MainPage.jsx @@ -3,7 +3,7 @@ import { Footer } from '@components/navigation/footer/Footer'; export default function MainPage() { return ( -
+ <> @@ -11,6 +11,6 @@ export default function MainPage() {
+ ); }