Skip to content

Commit

Permalink
Merge pull request #126 from EFUB4-Jukebox/dev
Browse files Browse the repository at this point in the history
🐛 Fix : 메인 페이지 svg 이미지 fixed -> absolute로 수정
  • Loading branch information
YoungseoChoi23 authored Aug 21, 2024
2 parents 7d46667 + 6a38fe5 commit 53d6752
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/pages/IntroducePage/Main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,10 @@ const BackgroundWrapper = styled.div`
`;
const Wrapper = styled.div`
min-width: 1000px;
position: relative;
z-index: 1;
`;
const Center = styled.div`
position: fixed;
position: absolute;
left: 50%;
z-index: 1;
transform: translateX(-50%);
Expand All @@ -63,13 +62,13 @@ const Center = styled.div`
}
`;
const Bottom = styled.div`
position: relative;
img {
width: 684x;
height: 357.2px;
position: fixed;
left: 50%;
position: absolute;
bottom: 0px;
left: 50%;
z-index: 0;
transform: translateX(-50%);
cursor: pointer;
Expand Down

0 comments on commit 53d6752

Please sign in to comment.