-
Notifications
You must be signed in to change notification settings - Fork 6
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
로그인 페이지 정적 UI 구현 #143
로그인 페이지 정적 UI 구현 #143
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
넵 코드 확인했습니다. 현재 진행 상황으로는 기존 레이아웃을 재사용하고 있고 변경사항이 필요하지 않아 확인하고 approve 드립니다. 고생했어요. 수야
export const formContainerStyle = css` | ||
display: flex; | ||
flex-direction: column; | ||
gap: 20px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
개인적으로는 아직 gap의 단위를 rem으로 해야할지 px로 해야할지 고민이 되네요. 수야의 의견은 어떤가요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
저 같은 경우는 글이 있는 경우 rem에 따라 간격이 늘어나는 것이 좋아보이기도하고, 그럴 필요까지 없는 것 같기도 하네요
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
저는 rem으로 줬어용
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
잘읽어보았습니다 고생하셨어요~~
export const formContainerStyle = css` | ||
display: flex; | ||
flex-direction: column; | ||
gap: 20px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
저는 rem으로 줬어용
return <div css={S.layoutStyle}>{children}</div>; | ||
} | ||
|
||
LoginLayout.Header = LoginHeader; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TriSectionHeader로 통합해도 괜찮을 것 같아용~
@@ -22,6 +23,10 @@ const router = createBrowserRouter([ | |||
path: ROUTES.participationComplete, | |||
element: <ParticipationCompletePage />, | |||
}, | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이걸보니 토큰이 없을 때 다른 곳에 마음대로 접근하는 경우 로그인페이지로 강제 다이렉션 되어야 할 것 같다는 생각이 들어요
PR의 목적이 무엇인가요?
로그인 페이지의 정적 UI 기능 구현
이슈 ID는 무엇인가요?
설명
결과물 UI
디자인 시안이 러프하게 작성되어있기 때문에, 일단은 스타일링은 크게 신경쓰지 않았고, 기본 구조를 만드는 것에 집중했어요. 아래 내용은 구현 과정의 사고를 작성해봤어요. 코드 리뷰에 도움이 되길 바랍니다 😄
질문 혹은 공유 사항 (Optional)