[SHOPTIME-3597] Home / Top / Banner의 Today's Deals에서 상품의 배경색이 있는경우 좌측과 아랫쪽에 여백이 노출됨

[SHOPTIME-3706] Home / Top / Today's Deal 이미지 표시 위치가 정확하지 않음

Changed files:
1. RandomUnit.module.less
2. RollingUnit.module.less

Detail note:
- 원인: 이미지의 좌표 위치 오류
- 대책: 이미지의 부모 태그에 position과 size 설정 후, 이미지는 부모의 크기를 상속
This commit is contained in:
younghoon100.park
2024-10-08 14:13:40 +09:00
parent aa45fe41cd
commit 2ac8b3bb36
2 changed files with 6 additions and 4 deletions

View File

@@ -215,9 +215,10 @@
}
}
.itemImgBox {
margin: 47px 0 0 19px;
.position(@position: absolute, @top: 47px, @left: 389px);
.size(@w: 326px, @h: 326px);
> img {
.size(@w: 324px, @h: 324px);
.size(@w: inherit, @h: inherit);
}
}
}

View File

@@ -219,9 +219,10 @@
}
}
.itemImgBox {
margin: 47px 0 0 19px;
.position(@position: absolute, @top: 47px, @left: 389px);
.size(@w: 326px, @h: 326px);
> img {
.size(@w: 324px, @h: 324px);
.size(@w: inherit, @h: inherit);
}
}
}