Skip to content

Commit

Permalink
chore: 하단 좌우 스크롤바 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
whitedev7773 committed Nov 5, 2024
1 parent 7f57cc1 commit 92cab04
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/components/layouts/MainLayout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ export const Main = styled.main`
width: 100%;
height: 100%;
margin: 0px auto;
overflow-x: hidden;
`;

export const MainLayout = () => {
Expand Down
4 changes: 2 additions & 2 deletions src/pages/MainPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ import { Footer } from '@components/navigation/footer/Footer';

export default function MainPage() {
return (
<div style={{ overflowX: 'hidden' }}>
<>
<Section.Section1 />
<Section.Section2 />
<Section.Section3 />
<Section.Section4 />
<Section.Section5 />
<Section.Section6 />
<Footer />
</div>
</>
);
}

0 comments on commit 92cab04

Please sign in to comment.