Skip to content

Commit

Permalink
fix: 그리드 깨짐 현상 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
eun-hak committed Apr 12, 2024
1 parent 2bd81db commit 6fa2941
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.productArticleContainer {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-columns: repeat(2, minmax(100px, 1fr));
gap: 12px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ function FixProductArticle({
</div>
</div>
<div className={cx('infoBox')}>
<Text className={cx('ellipsis')} typography="t8" color="primary500">
<Text className={cx('ellipsis')} typography="t7" color="primary500">
{itemData.companyName}
</Text>
<Text className={cx('ellipsis')} typography="t7" color="gray900" bold>
<Text className={cx('ellipsis')} typography="t6" color="gray900" bold>
{itemData.productName}
</Text>
{/* <div>
Expand Down

0 comments on commit 6fa2941

Please sign in to comment.