Skip to content

Commit

Permalink
[ISSUE-45] UI: 로그인 우측 상단 ? 버튼 위치 고정 (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
CosmicSandBox committed Oct 23, 2024
1 parent b69377e commit 18440ce
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/app/(auth)/login/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,12 @@ export default Login;
const Container = styled.div`
background-color: ${BACKGROUND_COLORS.default};
padding-bottom: 2rem;
min-height: 100vh; /* 화면 전체 높이를 채움 */
display: flex;
flex-direction: column;
justify-content: center; /* 세로 중앙 정렬 */
align-items: center; /* 가로 중앙 정렬 */
position: relative;
`;

const LogoContainerColumn = styled.div`
Expand All @@ -106,11 +112,9 @@ const LogoContainerColumn = styled.div`
`;

const QuestionWrapper = styled.div`
width: 100%;
display: flex;
justify-content: flex-end;
padding-top: 0.5rem;
padding-right: 0.5rem;
position: absolute;
top: 1rem;
right: 1rem;
`;

const SymbolWrapper = styled.div`
Expand Down

0 comments on commit 18440ce

Please sign in to comment.