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

refactor: 디자인 2차 수정 #165

Open
wants to merge 10 commits into
base: feat/v2
Choose a base branch
from
Open

refactor: 디자인 2차 수정 #165

wants to merge 10 commits into from

Conversation

hae-on
Copy link
Contributor

@hae-on hae-on commented Jul 20, 2024

Issue

✨ 구현한 기능

1. 좋아요 카운트 있을 때만 gap 추가

스크린샷 2024-07-21 오전 1 24 53

요 이슈 해결했습니다.
레시피 좋아요가 1. 꿀조합 컴포넌트 2. 꿀조합 상세 에서 사용되고 있는데,
gap은 좋아요 카운트가 있는 2. 꿀조합 상세에만 필요하기 때문에
어쩔 수 없이 조건부 스타일을 주게 되었습니다.

2. textarea 상하좌우 동일하게 수정

스크린샷 2024-07-21 오전 1 26 31

요 이슈 해결했습니다.
이게 제 생각에는 전송 버튼이 문제라기보다,,,
저 글자 수를 나타내는 글자가 수평이 아니고, textarea 자체 위 아래 마진이 안 맞아서 나타나는 문제 같아요.

그래서 원래는 요랬는데,
스크린샷 2024-07-21 오전 12 39 09

요래 됐슴다.
스크린샷 2024-07-21 오전 12 39 04

3. 하나일 때 커지는 현상

스크린샷 2024-07-21 오전 1 28 16

요 이슈 해결했습니다.

이제 하나일 때도, 여러개 일때도 같은 사이즈 입니다!
스크린샷 2024-07-21 오전 1 18 33
스크린샷 2024-07-21 오전 1 18 15

검색창 부분도 똑같은 문제라 동일한 방법으로 해결했는데,
로컬에서는 볼 방법이 없어서 (⬇️ 이렇기 때문)
스크린샷 2024-07-21 오전 1 29 31
걍 배포하고 확인하시죵 >_<

4. 상품 이미지 border 값 추가

스크린샷 2024-07-21 오전 1 35 52

이 말이 상품 이미지도 다른 애들처럼 border 값 넣으라는 거 맞겠죠??
스크린샷 2024-07-21 오전 1 36 25

요런 애들이 '상품 이미지가 테두리까지 꽉 차있는 경우' 라는 거죠?
나는 이렇게 이해해서 border 값 추가했음!

📢 논의하고 싶은 내용

엑셀에 처리한 건 색칠해놨어요.
일단 제가 할 수 있는 부분은 다 한 듯....

(밑에 두개랑 톡방에 올려놓은 건 제가 할게용,,,)
스크린샷 2024-07-21 오전 1 38 27
스크린샷 2024-07-21 오전 1 38 42

나머지는 도와줘요 여러분.... 🥹
지금 시급한 것 레시피 좋아요 버튼!!!!!!!!!

🎸 기타

아니 로컬에서 레시피 상세 어캐 들어감??
진짜로 아이디 1부터 계속 넣어봤는데 우리 따로 설정을 안해뒀나요...?
http://localhost:3000/recipes/1

⏰ 일정

  • 추정 시간 : 몰라
  • 걸린 시간 : 1시간(?)

Copy link

🔗 배포된 storybook 주소: https://65f015a4aed45406385006ee-kwkqeuebdw.chromatic.com/

Copy link
Member

@xodms0309 xodms0309 left a comment

Choose a reason for hiding this comment

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

저는 로컬 자체가 안뜨는데요 이거 뭐죠..ㅋㅋㅋㅋㅋㅋㅋㅋ ㅠ 코멘트 하나만 확인 부탁해요

@@ -11,9 +11,9 @@ export const container = style({
export const commentForm = style({
display: 'flex',
gap: 8,
alignItems: 'flex-end',
alignItems: 'center',
Copy link
Member

Choose a reason for hiding this comment

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

이거 근데 댓글이 길어지면 어떻게 보이나요? 저 이거 작업할 때 꽤나 골머리 앓았던 기억이 있어가지고

Copy link
Contributor Author

Choose a reason for hiding this comment

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

스크린샷 2024-07-27 오후 4 12 51

그래서 flex-end 썼었구나,,,
얘 이렇게 보이네요 길어지면 밑에 붙게 함 해볼게욥

Copy link
Contributor Author

Choose a reason for hiding this comment

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

@xodms0309

완료우....
근데 프로필 사진도 원래 한줄이면 가운데고, 늘어나면 밑에 붙는거긴한데 그냥 넘어가겠음니다 잘 안 보임 ^_^

스크린샷 2024-07-31 오후 11 28 26 스크린샷 2024-07-31 오후 11 28 41

Copy link
Contributor

@Leejin-Yang Leejin-Yang left a comment

Choose a reason for hiding this comment

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

고생 많았슴다
지금 두개꺼 머지되면 배포 한번 가시죠??

@@ -13,6 +13,7 @@ export const productImage = style({
width: '100%',
height: 'auto',
minWidth: 163,
borderRadius: '6px',
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
borderRadius: '6px',
borderRadius: 6,

..!

Copy link
Contributor

Choose a reason for hiding this comment

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

넵 저도 그렇게 이해함.!

export const wrapper = style({
height: '100%',
display: 'flex',
flex: '0 0 160px',
Copy link
Contributor

Choose a reason for hiding this comment

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

CSS 고수시네요?!

Copy link
Contributor Author

Choose a reason for hiding this comment

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

프론트엔드 시니어와 함께 한 CSS랄까요~~

Copy link
Contributor

Choose a reason for hiding this comment

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

시니어 여전히 믿음직 하네요 👍

@Leejin-Yang
Copy link
Contributor

저도 집가면 로컬 확인하겠슴다

@xodms0309
Copy link
Member

원래 로컬에서 돌리면 oauth 진입 안했던가요?? 지금 여기 진입이 안돼서 로그인이 안되고 mockSessionId 설정이 안되는듯

@hae-on
Copy link
Contributor Author

hae-on commented Jul 27, 2024

지금 로컬은 무조건 로그인 상태 아녜여? 그 내가 레시피 상세 msw 주석 처리한 거 때문에 그런가?? 아직도 안 들어가져요???

@Leejin-Yang
Copy link
Contributor

로컬 무조건 로그인 되어있슴다
그리고 저 로컬에서 꿀조합 상세 잘 들어가짐.!

Copy link

🔗 배포된 storybook 주소: https://65f015a4aed45406385006ee-siirvvwepk.chromatic.com/

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.

조합 관련 디자인 수정
3 participants