Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Long Applicant Name Issue #22

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/frontend/components/ProfileTemplate/Header/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)`
Expand Down