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

[fix] 홈 화면 스와이프 안되는 문제 해결 #164

Merged
merged 1 commit into from
Feb 29, 2024

Conversation

tolluset
Copy link
Collaborator

resolve #163

문제: 스와이핑이 안되는 문제 발생

원인: 특정 제품명이 긴 경우 카드 사이즈를 넘쳐서 스와이핑이 되지 않는 문제 발생
스크린샷 2024-02-29 오전 12 18 27

구현한 것

word-break 추가

구현하지 않은 것

동작 확인

스크린샷 2024-02-29 오전 12 40 02

@tolluset tolluset self-assigned this Feb 28, 2024
@@ -19,7 +19,7 @@ export const ProductCard = (props: IProductCard) => {
<h4>{product.category}</h4>
</div>
<div className="flex justify-between">
<h3 className="my-2 pl-4 pr-2">{product.title}</h3>
<h3 className="my-2 break-all pl-4 pr-2">{product.title}</h3>
Copy link
Collaborator

Choose a reason for hiding this comment

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

오... 이 문제였군요!! 고생하셨습니다

@tolluset tolluset merged commit df125a8 into main Feb 29, 2024
@tolluset tolluset deleted the fix/163/home-crad-swipe branch February 29, 2024 09:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[fix] 홈 화면 카테고리 탭 스와이핑이 되지 않는 문제
2 participants