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 #94

Merged

Conversation

Park-Jongchan
Copy link
Collaborator

@Park-Jongchan Park-Jongchan commented Sep 20, 2024

요구사항

기본

브라우저에 현재 보이는 화면의 영역(viewport) 너비를 기준으로 분기되는 반응형 디자인을 적용합니다.

  • PC: 1200px 이상

  • Tablet: 768px 이상 ~ 1199px 이하

  • Mobile: 375px 이상 ~ 767px 이하

  • Tablet 사이즈로 작아질 때 “판다마켓” 로고의 왼쪽에 여백 24px, “로그인” 버튼 오른쪽 여백 24px을 유지할 수 있도록 “판다마켓” 로고와 “로그인" 버튼의 간격이 가까워집니다.

  • Tablet 사이즈에서 내부 디자인은 PC사이즈와 동일합니다.
    X – 사진, 글씨 등의 크기가 변경되었습니다.

  • Mobile 사이즈로 작아질 때 “판다마켓” 로고의 왼쪽에 여백 16px, “로그인” 버튼 오른쪽 여백 16px을 유지할 수 있도록 “판다마켓” 로고와 “로그인" 버튼의 간격이 가까워집니다.

  • Mobile 사이즈에서 좌우 여백 16px 제외하고 내부 요소들이 너비를 모두 차지합니다.

  • Mobile 사이즈에서 내부 요소들의 너비는 기기의 너비가 커지는 만큼 커지지만 400px을 넘지 않습니다.
    X – fiqma에서는 Fixed (343px)라는 표현이 있는데 이게 343px로 고정하라는 뜻이 아닌가요?

심화

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

주요 변경사항

스크린샷

image
image

멘토에게

  • 나름 열심히 했는데 제대로 적용이 된건지도 잘 모르겠습니다.
  • fiqma에 나온 내용을 제가 잘 이해하고 하는 건지도 모르겠습니다.
  • 이해가 가지 않거나 저의 개인 공부를 위한 주석이 꽤 있습니다.
  • 부족한 부분을 지적해주시면 최대한 반영하며 맞춰나가겠습니다.
  • 셀프 코드 리뷰를 통해 질문 이어가겠습니다.

@Park-Jongchan Park-Jongchan requested a review from kiJu2 September 20, 2024 18:32
@Park-Jongchan Park-Jongchan changed the title Basic 박종찬 [박종찬] sprint3 Sep 20, 2024
@Park-Jongchan Park-Jongchan added the 매운맛🔥 뒤는 없습니다. 그냥 필터 없이 말해주세요. 책임은 제가 집니다. label Sep 20, 2024
@kiJu2
Copy link
Collaborator

kiJu2 commented Sep 23, 2024

수고 하셨습니다 ! 스프리트 미션 하시느라 정말 수고 많으셨어요.
학습에 도움 되실 수 있게 꼼꼼히 리뷰 하도록 해보겠습니다. 😊

@@ -1,9 +1,9 @@
@font-face {
font-family: "ROKAF sans";
src: url(../../font/ROKAF\ Sans\ Bold.ttf);
font-family: "ROKAF-sans";
Copy link
Collaborator

Choose a reason for hiding this comment

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

굳굳 👍 띄어쓰기보다는 -로 이루어진 케밥케이스가 아무래도 편하죠.

띄어쓰기를 사용하면 \를 넣어야 되어서 불편하기도 하고 휴먼에러를 많이 발생시킬 수 있어요 ! 저도 이와같은 이유로 파일명이나 폴더명에는 띄어쓰기를 사용하지 않습니다. 😊

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

일단 폰트부분은 건드리기 무서워 손대지 않고 제공(?)해준 대로 상요하고 있습니다. 파일명은 안바꾸고 CSS안에서만 이름 수정해도 되는 부분일까요?

Comment on lines +86 to +87
.inputs:focus {
outline: 2px solid var(--blue-100);
Copy link
Collaborator

Choose a reason for hiding this comment

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

상태 선택자를 넣었군요 !

좀 더 다채로운 UI가 되었을 것 같아요. 굳굳 👍

Comment on lines +317 to +324
header {
padding: 0 16px;
}

header {
width: 100%;
gap: 126px;
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

혹시 두 개로 나눈 이유가 있으실까요?

Suggested change
header {
padding: 0 16px;
}
header {
width: 100%;
gap: 126px;
}
header {
width: 100%;
gap: 126px;
padding: 0 16px;
}

Comment on lines +129 to +130
margin: 100px 0;
/* reset css라는 것을 실행후 figma에서 보여지는 것과 다르게 article이 붙어 있어 임의로 수정하였습니다. */
Copy link
Collaborator

Choose a reason for hiding this comment

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

넵넵 ~! 굳굳 👍

@@ -4,14 +4,15 @@ html {
}

header {
position: fixed;
position:fixed;
Copy link
Collaborator

Choose a reason for hiding this comment

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

코드 전반적으로 프리티어 적용한 것 같은데, 여기는 왜인지 적용이 안되어있네요 !

Suggested change
position:fixed;
position: fixed;

Copy link
Collaborator

Choose a reason for hiding this comment

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

또한 ! sticky로 설정해두면 height만큼 상단에 공간을 차지하게 될 수 있습니다 !

Suggested change
position:fixed;
position: sticky;

별도의 margin이나 padding 등의 height를 주지 않아도 되는 장점이 있습니다. 😊

}

/* Mobile 스타일 (375px ~ 767px) 250%이상의 화면*/
@media (max-width: 767px){
Copy link
Collaborator

Choose a reason for hiding this comment

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

굳굳 ~! 반응형을 잘 설정해두셨군요 😊

@kiJu2
Copy link
Collaborator

kiJu2 commented Sep 23, 2024

수고하셨습니다 종찬님 !

꾸준히 과제를 제출하시고 항상 배우시려는 모습이 정말 보기 좋습니다. 🥺🥺🥺
앞으로도 지금과 같은 스탠스 꾸준히 유지하시면 분명 멋진 개발자로 성장할 수 있을거라고 확신합니다 ! 👍👍

@kiJu2 kiJu2 merged commit 140f8a8 into codeit-bootcamp-frontend:Basic-박종찬 Sep 23, 2024
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