Skip to content

구현 과제 - 로그인/회원가입 모달 - 정승규#31

Open
Seunggyu008 wants to merge 3 commits intomainfrom
11-jungSeungGyu
Open

구현 과제 - 로그인/회원가입 모달 - 정승규#31
Seunggyu008 wants to merge 3 commits intomainfrom
11-jungSeungGyu

Conversation

@Seunggyu008
Copy link
Copy Markdown

@Seunggyu008 Seunggyu008 commented Aug 5, 2023

레이아웃 구현 완료하였습니다

#To do

  • 커스텀 체크박스 스타일링

많이 부족하지만 잘 부탁드립니다!

Copy link
Copy Markdown
Collaborator

@merrybmc merrybmc left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

안녕하세요 승규님. 첫 pr을 축하드립니다. 🎉🎉🎉🎉🎉

현재 구현된 사항에 대하여 체크박스에 대해 중점적으로 아쉬운 부분에 대해 코멘트를 남겨드렸습니다.
구현을 잘하셔서 피드백을 드릴 내용은 많이 없지만요.. 😢

칭찬해드릴 점은 특히 html 시맨틱 태그 부분은 많이 신경을 써주셔서 구현해주신 것 같습니다. 👍

Comment on lines 142 to 169
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

  1. input의 체크박스가 나타나고 있습니다.

{
overflow: hidden;
width: 1px;
height: 1px;
clip-path: inset(50%);
} 를 활용하여 체크박스를 숨겨주시는걸 권장해드립니다.

  1. 로그인상태유지 텍스트에 줄바꿈이 일어나고 있습니다.
    태그의 css 코드 분리와 width값 등 수정이 필요해 보입니다.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

아마 html에서 .a11y-hidden 요 클래스 설정을 안해주신거 같아요:)
{
overflow: hidden;
width: 1px;
height: 1px;
clip-path: inset(50%);
}

요걸로 처리하시면 될꺼같아요!

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

새로 커밋한 common.css파일에 a11y-hidden 클래스가 누락되어있었네요 ㅠ
줄바꿈도 체크박스가 나타나서 일어난거 같습니다.
다음엔 좀 더 꼼꼼하게 체크한 후 커밋하겠습니다!
피드백 주셔서 감사합니다 :))

Comment on lines 15 to 16
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

웹접근성의 시맨틱 태그를 고려하였을 때 h1 태그를 쓰는 것이 좋아보여요. 😀

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

넵! 수정하겠습니다!

@merrybmc merrybmc changed the title 구현과제 - 로그인/회원가입 모달 - 정승규 구현 과제 - 로그인/회원가입 모달 - 정승규 Aug 7, 2023
@AYFG
Copy link
Copy Markdown

AYFG commented Aug 7, 2023

안녕하세요 승규님!! 피그마에 나온 규격을 지키려 한 노력이 보이네요!! 고생 많으셨습니다 👍👍

::placeholder {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 16px;

이 곳에 글씨가 어색하게 느껴졌는데 #user-pw에게 padding-left:15px이 이미 들어가있고 가운데 정렬이 되어있더라고요!
포지션 값을 준 4줄 한번 확인해주시면 좋을 것 같습니당!!😁
앞으로 잘부탁드립니다!!

Copy link
Copy Markdown
Collaborator

@YennieJ YennieJ left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

승규님 고생하셨습니다 :)👍

  1. 사용하지 않는 default-font 클래스명은 지우는게 좋을꺼같아요
    2.따로 설정하지 않는다면! font-style,height: nomal, font-weight: 400; 이 기본이라서 다 추가하지 않으셔도 됩니다 :)

Comment on lines 17 to 19
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

div>a 라서 로그인 글씨 부분만 클릭이 되고 나머지 파란부분 영역은 클릭 되지 않습니다:)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

승규님 이 파일 뭐죠? :))

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

width는 굳이 주지 않아도 100%인데 사용하신 이유가 있을까요?

Comment on lines 6 to 7
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

height: 100vh;
display: flex;
를 사용하셨으니
justify-content: center;
align-items: center;
사용하지 않고
.modal-container 에 margin: auto; 를 준다면
세로 사이즈가 줄었을 때 콘텐츠가 짤리지 않아요!

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

figma border width랑 값이 다른데 의도 하신건가요?:)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.modal-container img 너무 광범위해요!
header img 라던가,class 명을 추가하시는게 좋을 것같고
alt 명 또한 추가.
img태그 위치 조정이아니라 a태그 자체를 위치 조정하시는걸 추천드립니다!

#11

여기에 닫기 버튼 위치에 관련해서 글을 남긴게 있으니 참고해주시구요!

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

height는 자식요소 크기에 따라 달라지기 때문에 규정하지 않는것을 추천드립니다:)

Comment on lines 35 to 37
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

span태그는 필요하지 않을꺼같아요
css는 .login-button에 합쳐주시면 됩니다!
button type은 submit입니다!
form 태그 안으로 옮겨서 로그인 버튼을 눌렀을 때 유저 정보가 보내질 수 있도록 해주세요:)

Copy link
Copy Markdown
Author

@Seunggyu008 Seunggyu008 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

개선 사항:

  1. a11y-hidden 누락 수정, 체크박스 줄바꿈 방지
  2. placeholder 위치 수정
  3. screen reader 기능을 고려안 x버튼 위치 조정

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants