Skip to content

Commit

Permalink
bug: text에 말줄임표 className 추가 #53
Browse files Browse the repository at this point in the history
  • Loading branch information
seoye0ng committed Jan 8, 2024
1 parent ed21764 commit 9bb3f0f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/shared/product-article/ProductArticle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ function ProductArticle({ isRow = false, itemData }:ProductArticleProps) {
/>
</div>
<div className={cx('infoBox')}>
<Text typography="t8" whiteSpace="nowrap">{itemData.brand}</Text>
<Text typography="t6">{itemData.name}</Text>
<Text className={cx('ellipsis')} typography="t8" whiteSpace="nowrap">{itemData.brand}</Text>
<Text className={cx('ellipsis')} typography="t6">{itemData.name}</Text>
<div>
<Text typography="t7" color="gray300">{itemData.category}</Text>
<Heart width={16} height={14} color="gray300" changeColor="pink" />
Expand Down

0 comments on commit 9bb3f0f

Please sign in to comment.