-
Notifications
You must be signed in to change notification settings - Fork 2
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/#443 캐러셀 컴포넌트 및 썸네일 컴포넌트 리팩터링 #454
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
꼼꼼하게 변경해주셨네요~
변경 사항 확인했습니다~ 고생하셨어요 ~
@@ -91,3 +86,5 @@ const PlayingTime = styled.div` | |||
const PlayingTimeText = styled.p` | |||
padding-top: 2px; | |||
`; | |||
|
|||
const PlayIcon = styled.img``; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💬💬💬(매우 사소) width, height를 명시적으로 적어주는건 어떨까요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
width와 height 명시해주었습니다.
@@ -16,13 +17,13 @@ const CarouselItem = ({ votingSong }: CarouselItemProps) => { | |||
return ( | |||
<Wrapper> | |||
<CollectingLink to={`${ROUTE_PATH.COLLECT}/${id}`}> | |||
<Album src={albumCoverUrl} /> | |||
<Thumbnail src={albumCoverUrl} size="xl" borderRadius={0} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💬💬💬(매우 사소) 아래 카테고리의 앨범 자켓 radius를 4px로 맞추는김에 통일 시켰었는데,
0px 인게 나으려나요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
저도 동감합니다 border-radius: 4px
에서 0
으로 바뀐 이유가 있나용?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
기존 코드에서 0px이었기 때문에 Thumbnail
에 borderRadius
를 뚫어 놓고, 0px로 두었습니다. 기존 캐러셀 아이템을 만들 때 그렇게 정했던 이유은, 너무 같은 radius로만 표현하면 단조롭다고 생각해서였고요. 다들 통일감 있는 걸 선호하신다는 의견 반영해서 4px로 두겠습니다! 👍
@@ -16,13 +17,13 @@ const CarouselItem = ({ votingSong }: CarouselItemProps) => { | |||
return ( | |||
<Wrapper> | |||
<CollectingLink to={`${ROUTE_PATH.COLLECT}/${id}`}> | |||
<Album src={albumCoverUrl} /> | |||
<Thumbnail src={albumCoverUrl} size="xl" borderRadius={0} /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
저도 동감합니다 border-radius: 4px
에서 0
으로 바뀐 이유가 있나용?
📝작업 내용
#️⃣연관된 이슈
close #442 #443