Skip to content
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

[이재완] Sprint3 #86

Conversation

jaewan0
Copy link
Collaborator

@jaewan0 jaewan0 commented Jun 7, 2024

요구사항

기본

  • 공통
  • 브라우저에 현재 보이는 화면의 영역(viewport) 너비를 기준으로 분기되는 반응형 디자인을 적용합니다.
    PC: 1200px 이상
    Tablet: 768px 이상 ~ 1199px 이하
    Mobile: 375px 이상 ~ 767px 이하
    375px 미만 사이즈의 디자인은 고려하지 않습니다
  • 랜딩페이지
  • Tablet 사이즈로 작아질 때 “판다마켓” 로고의 왼쪽에 여백 24px, “로그인” 버튼 오른쪽 여백 24px을 유지할 수 있도록 “판다마켓” 로고와 “로그인" 버튼의 간격이 가까워집니다.
  • Mobile 사이즈로 작아질 때 “판다마켓” 로고의 왼쪽에 여백 16px, “로그인” 버튼 오른쪽 여백 16px을 유지할 수 있도록 “판다마켓” 로고와 “로그인" 버튼의 간격이 가까워집니다.
  • 화면 영역이 줄어들면 “Privacy Policy”, “FAQ”, “codeit-2024”이 있는 영역과 SNS 아이콘들이 있는 영역의 간격이 줄어듭니다.
  • 로그인, 회원가입 페이지 공통
  • Tablet 사이즈에서 내부 디자인은 PC사이즈와 동일합니다.
  • Mobile 사이즈에서 좌우 여백 16px 제외하고 내부 요소들이 너비를 모두 차지합니다.
  • Mobile 사이즈에서 내부 요소들의 너비는 기기의 너비가 커지는 만큼 커지지만 400px을 넘지 않습니다.

심화

  • 페이스북, 카카오톡, 디스코드, 트위터 등 SNS에서 Linkbrary 랜딩 페이지(“/”) 공유 시 좌측 예시와 같은 미리보기를 볼 수 있도록 랜딩 페이지 메타 태그를 설정해 주세요.
  • 미리보기에서 제목은 “판다 마켓”, 설명은 “일상의 모든 물건을 거래해보세요”로 설정합니다.
  • 주소와 이미지는 자유롭게 설정하세요.

주요 변경사항

  • 홈 페이지에 적응형 디자인을 적용하였습니다.
  • 로그인 페이지와 회원가입 페이지에 적응형 디자인을 적용하였습니다.

멘토에게

  • 아직 제대로 구현하지 못한 부분들이 많습니다... 😓

@jaewan0 jaewan0 requested a review from 201steve June 7, 2024 10:35
@jaewan0 jaewan0 added 매운맛🔥 뒤는 없습니다. 그냥 필터 없이 말해주세요. 책임은 제가 집니다. 미완성🫠 죄송합니다.. and removed 매운맛🔥 뒤는 없습니다. 그냥 필터 없이 말해주세요. 책임은 제가 집니다. labels Jun 7, 2024
@jaewan0 jaewan0 changed the base branch from React-이재완 to Basic-이재완 June 7, 2024 10:37
Copy link
Collaborator

@201steve 201steve left a comment

Choose a reason for hiding this comment

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

10만큼, 30만큼, 70만큼 했더라도 공개하지않으면 0이랑 같아요!
미완성이라도 잘 올려주셨어요!
앞으로도 계속 화이팅!!

Comment on lines +12 to +19
<a href="/" id="panda-market-logo">
<picture>
<source srcset="images/logo/panda-market-logo-mobile-text.png" media="(max-width: 767px)">
<source srcset="images/logo/panda-market-logo.png" media="(max-width: 1200px)">
<img src="images/logo/panda-market-logo.png" alt="판다마켓 홈" width="153">
</picture>
</a>

Copy link
Collaborator

Choose a reason for hiding this comment

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

picture 태그로 반응형 이미지 제공하고 있군요! 굳굳!! 👍🏻

Comment on lines +225 to +226
background-color: var(--gray900);
color: var(--gray400);
Copy link
Collaborator

Choose a reason for hiding this comment

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

좋습니다!
컬러 변수로 바꾸니 같은 gray여도 어둡거나 밝거나 차이를 알기 쉬워졌어요!

Copy link
Collaborator

Choose a reason for hiding this comment

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

index.html이랑 셋트셋트로 쓰이는 것 같은 css네요

home.css -> index.css로 수정해보는건 어떨까요?

top: 0;
}

#panda-market-logo {
Copy link
Collaborator

Choose a reason for hiding this comment

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

id 선택자는 class도 써보고, tag도 써보고 다 써봤는데도 안되면 꺼내는 카드로 써보시는건 어떨까요?
대부분은 class로도 커버가 가능합니다. :-)

Comment on lines +40 to +52
header {
width: 100%;
height: 70px;
display: flex;
justify-content: space-between;
align-items: center;
background-color: var(--white);
border-bottom: 1px solid #dfdfdf;
/* Sprint Mission 2 기본 요구사항:
아래로 스크롤 해도 상단 네비게이션 바(Global Navigation Bar)가 최상단에 고정됩니다. */
position: fixed;
top: 0;
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

미디어 쿼리에서 동일한 규칙이 반복되서 사용되고, 크기나 다른 수치가 달라지고 있는건 없어서
미디어 쿼리에 포함되지않아도 무방한 공통 코드 인 것 같아요

@201steve 201steve merged commit 5381443 into codeit-bootcamp-frontend:Basic-이재완 Jun 10, 2024
@jaewan0 jaewan0 deleted the Basic-이재완-sprint3 branch June 14, 2024 05:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
미완성🫠 죄송합니다..
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants