diff --git a/src/frontend/components/ProfileTemplate/Header/Header.js b/src/frontend/components/ProfileTemplate/Header/Header.js index 3ecea44..6cd782f 100644 --- a/src/frontend/components/ProfileTemplate/Header/Header.js +++ b/src/frontend/components/ProfileTemplate/Header/Header.js @@ -15,7 +15,7 @@ const BackArrow = styled.button` font: inherit; cursor: pointer; outline: inherit; - position: fixed; + position: absolute; z-index: 2; top: 5rem; left: 1rem; @@ -26,7 +26,8 @@ const BackArrow = styled.button` const HeaderGrid = styled(Grid)` width: 100%; - position: fixed; + position: relative; + overflow: auto; z-index: 1; padding: 64px 82px 10px 82px; background-color: #a3f4e4; diff --git a/src/frontend/pages/recruitment/ApplicationProfile/ApplicationProfilePage.js b/src/frontend/pages/recruitment/ApplicationProfile/ApplicationProfilePage.js index 6cbf7a6..f171674 100644 --- a/src/frontend/pages/recruitment/ApplicationProfile/ApplicationProfilePage.js +++ b/src/frontend/pages/recruitment/ApplicationProfile/ApplicationProfilePage.js @@ -25,7 +25,7 @@ const ContentGrid = styled(Grid)` position: relative; top: 12rem; z-index: 0; - padding: 64px 82px 64px 82px; + padding: 0px 82px 64px 82px; `; const PostingGrid = styled(Grid)` diff --git a/src/frontend/pages/recruitment/InterviewProfile/InterviewProfilePage.js b/src/frontend/pages/recruitment/InterviewProfile/InterviewProfilePage.js index ad5690c..c71cd33 100644 --- a/src/frontend/pages/recruitment/InterviewProfile/InterviewProfilePage.js +++ b/src/frontend/pages/recruitment/InterviewProfile/InterviewProfilePage.js @@ -22,7 +22,7 @@ const ContentGrid = styled(Grid)` position: relative; top: 9rem; z-index: 0; - padding: 64px 82px 64px 82px; + padding: 0px 82px 64px 82px; `; const InterviewContainer = styled(Grid)`