diff --git a/src/pages/root/root.page.tsx b/src/pages/root/root.page.tsx index 2f584ea..2225612 100644 --- a/src/pages/root/root.page.tsx +++ b/src/pages/root/root.page.tsx @@ -10,13 +10,21 @@ import { Top } from "~/widgets/top-filter"; import { Banner } from "~/shared/banner"; const Main = styled.main` + width: 100vw; + height: 100vh; + overflow-y: auto; + scrollbar-width: none; +`; + +const MainContainer = styled.div` width: 100%; max-width: 1440px; margin: auto; display: flex; justify-content: center; align-items: flex-start; - padding-top: 10px; + padding-top: 20px; + margin-bottom: 200px; `; const LeftSideBars = styled.section` @@ -29,11 +37,11 @@ const LeftSideBars = styled.section` export const RootPage = () => { return ( - <> +
-
+ @@ -41,7 +49,7 @@ export const RootPage = () => { {/* Todo: 사이드바 작업한 거랑 레이아웃 합쳐야함 */} -
- + +
); };