-
Notifications
You must be signed in to change notification settings - Fork 3
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
[ Feat/#481] 그룹 생성페이지 플로우 반응형 전환 #483
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
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.
반응형 전환 고생하셨습니다 !!
스타일 코드 중 사용하지 않는 주석들만 지워주면 더 좋을 것 같아요 🚀
@@ -255,6 +257,11 @@ const BtnWrapper = styled.div` | |||
flex-direction: column; | |||
gap: 1.2rem; | |||
width: 82.6rem; | |||
|
|||
@media ${MOBILE_MEDIA_QUERY} { | |||
flex-direction: row-reverse; |
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.
P5) 오호 이 속성 사용하는 건 처음 보는데 이런식으로 배치를 적용해줄 수 있겠군요 👍🏻
@@ -192,7 +187,7 @@ const CreateGroupInfo = ({ | |||
<Spacing marginBottom="2.4" /> | |||
<picture> | |||
<source srcSet={createGroupWebp} /> | |||
<img src={createGroupIlust} /> | |||
<GroupImage src={createGroupIlust} /> |
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.
P1) alt 속성으로 어떤 이미지인지에 대한 설명도 추가해주면 좋을 것 같아요 !
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.
반영했습니다!
isValid={leaderPenName.length <= 8} | ||
onChange={(e) => handleLeaderNameInput(e)} | ||
maxLength={9} | ||
/>{' '} |
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.
P3) {' '}
코드 불필요하면 지워줍시다 !
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.
lgtm
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.
굿굿 코멘트 몇개만 확인해주세요!
반응형인만큼 스크린샷 영상으로 올리면 좋을 것 같아요! 수고하셨습니다~~
@@ -403,13 +431,16 @@ const GroupInfoWrppaer = styled.section` | |||
`; | |||
|
|||
const TextAreaLength = styled.p<{ isValid: boolean }>` | |||
position: relative; | |||
position: absolute; | |||
right: 45px; |
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.
p1) 이거 px로 되어있는 이유가 뭔가요?
bottom: 4rem; | ||
left: 70.6rem; | ||
|
||
/* left: 70.6rem; */ |
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.
p1) 지욷기~
export const InputInfoMsg = { | ||
groupNameLength: '10자 이내로 작성해주세요.', | ||
groupNameNotAvailable: '이미 사용중인 모임명입니다.', | ||
groupNameNotCheck: '중복확인을 해주세요.', | ||
groupNameAvailable: '사용 가능한 모임명입니다.', | ||
groupNameEmpty: '글모임 이름을 입력해주세요.', | ||
emptyText: '', | ||
}; |
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.
p5) const니까 대문자로 export해도 좋을 것 같아용
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.
반영완료했습니다!
padding: 6.4rem 0; | ||
width: 100%; | ||
|
||
/* height: calc(100% - 44px); */ |
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.
p1) 여기저기 주석 지워주세용~
…into feat/#481/responsiveWebCreateGroupPage
✨ 해당 이슈 번호 ✨
#481
todo
📌 내가 알게 된 부분
📌 질문할 부분
📌스크린샷(선택)