Skip to content

Commit

Permalink
fix: 메인페이지 헤더 width 100% 변경, 배너 크기 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
YearaChoi committed Aug 6, 2024
1 parent 690c36b commit 49cf71d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/MainPage/BannerMain.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const Wrapper = styled.div`

const BannerBg = styled.div`
background-image: url(${mainBannerImg});
width: 108%;
width: 109%;
height: 118%;
background-size: cover;
background-position: left;
Expand Down
4 changes: 3 additions & 1 deletion src/components/MainPage/HeaderMain.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,14 @@ function HeaderMain() {
export default HeaderMain;

const Wrapper = styled.div`
/* border: 1px solid red; */
height: 98px;
font-size: 20px;
display: flex;
justify-content: center;
position: absolute;
width: 1440px;
width: 100%;
min-width: 1440px;
font-family: "PretendardRegular";
`;

Expand Down

0 comments on commit 49cf71d

Please sign in to comment.