Skip to content

구현 과제 - 로그인/회원가입 모달 - 예슬#24

Open
yeslcho wants to merge 1 commit intomainfrom
11-yeSl
Open

구현 과제 - 로그인/회원가입 모달 - 예슬#24
yeslcho wants to merge 1 commit intomainfrom
11-yeSl

Conversation

@yeslcho
Copy link
Copy Markdown

@yeslcho yeslcho commented Jul 31, 2023

로그인/회원가입 첫 번째 레이아웃을 구현하였습니다.

#To do

  • 체크박스 구현
  • 로그인/비밀번호 input border 수정

@kmryuuu
Copy link
Copy Markdown

kmryuuu commented Aug 2, 2023

로그인 버튼에 폰트 색상이 검은색으로 되어 있어서 피그마와 같은 색상으로 수정이 필요해 보입니다!

</div>
<button type="button" class="btn-login">로그인</button>
</form>
<strong class="join">회원가입<span class="bar">|</span> 아이디/비밀번호 찾기</strong>
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

회원가입, 아이디/비밀번호 찾기 부분은 a나 button 태그를 이용해서 cursor: pointer; 로 표현해 보시면 더 좋을 것 같아요! 😃

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
Author

Choose a reason for hiding this comment

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

리뷰 감사드려요! 수정하겠습니다👍😆

@AYFG
Copy link
Copy Markdown

AYFG commented Aug 2, 2023

안녕하세요 예슬님!!
h3 부분에만 폰트가 적용 되어있는데 body에 폰트를 적용 시켜주면 좋을 것 같아요!
공유해주셔서 감사합니다~~👍👍

}

.section1 h3 {
font-family: 'SpoqaHanSansNeo-Regular';
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

전체 페이지의 글씨체가 동일하기 때문에, body 태그에 font-family를 주셔도 좋을 것 같아요!

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.

너무 감사해요! 수정하겠습니다!

@YennieJ
Copy link
Copy Markdown
Collaborator

YennieJ commented Aug 3, 2023

예슬님 고생하셨습니다 :)
시맨틱 태그를 사용하시려고 고민하신게 보여요👍
체크박스를 좀 더 구현하기 위해서 다른 분들의 코드를 보시고 도전해보시는 걸 추천드려요!

Comment on lines +65 to +74
.box {
display: flex;
flex-direction: column;
width: 520px;
margin: auto;
background-color: #FFFFFF;
border-radius: 10px;
justify-content: center;

}
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.

border를 추가하시는 걸 추천드려요!
그리고 x축 뿐만아니라 y축도 화면 정중앙에 오도록 도전해봐요 :)
마지막으로 궁금한 점은
이 태그에 display:flex가 필요한 이유가 무엇일까요?

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.

예진님 자세한 리뷰 너무 감사해요ㅜㅜ 정말 많은 도움이 되고 공부가 된거같아요! 꼭 수정하겠습니다! 감사해요!!

Comment on lines +102 to +104
margin-left: 24px;
margin-top: 26px;
margin-bottom: 24px;
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.

margin: 26px 0 24px 24px;
마진을 한번에 작성할 수 있는 방법도 있어요!

Comment on lines +107 to +111
.form {
width: 472px;
margin: 0 24px;

}
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를 px로 고정 시키는 것은 지양하는 것이 좋다고 합니다!
여기서 width를 따로 지정하지 않아도 잘 동작 하네요!
margin: 0 24px; 을 지정해놨기 때문인거같아요!

Comment on lines +156 to +161
.btn-login {
width: 100%;
height: 50px;
margin: 20px auto;
border-radius: 5px;
background: #2F80ED;
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.

color, font-size , font-weight 피그마와 비교해보기

background-color: #C4C4C4;
display: block;
position: absolute;
vertical-align: middle;
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.

display로 인해 속성이 무시됩니다. 'display: block'에서 vertical-align을 사용할 수 없습니다.
사용하지 않으셔도 될꺼같아요!:)

Comment on lines +239 to +241
[class^="icon"] p {
margin: 0 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.

[class^="icon"] 에서 이미 flex를 사용하고 있기 때문에

justify-content: center; 를 주는 방법도 좋을꺼 같습니다!

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.

6 participants