[SHOPTIME-2949] OnSale / 포커스를 우측으로 이동 시 맨 끝에 있는 아이템의 할인 뱃지가 표시되지 않는 현상 (3차 수정)

변경 파일:
1. OnSaleProductList.jsx
2. OnSaleProductList.module.less

변경 내용:
1. tItemCard, className 부여
2. will-change 초기화
This commit is contained in:
younghoon100.park
2024-09-02 16:19:17 +09:00
parent 4411b018d8
commit ef5c8a8538
2 changed files with 12 additions and 0 deletions

View File

@@ -154,6 +154,7 @@ export default function OnSaleProductList({
return (
<TItemCard
className={css.tItemCard}
data-lg-category-code={lgCatCd}
data-exposure-order={contentsIndex + 1}
imageAlt={prdtNm}

View File

@@ -11,8 +11,19 @@
.size(@w: 100%, @h: inherit);
&.tVirtualGridList {
background-color: red;
padding-left: 60px;
> div:nth-child(1) {
.tItemCard {
> div:nth-child(1) {
> img {
will-change: unset;
}
}
}
}
> div:nth-child(3) {
right: -18px;
}