[SHOPTIME-3730]Hot Picks / FHD TV에서 동영상 위치가 틀어져서 표시되는 현상

원인 : 저해상도 layout 계산되는 과정에서 16:9 비율이 아닌 크기로 지정됨
대책 : FHD 모델의 경우 16:9 해상도의 이미지박스크기 지정
This commit is contained in:
yonghyon
2024-10-11 15:07:32 +09:00
parent 793a42ce69
commit f8623ee812
2 changed files with 24 additions and 1 deletions

View File

@@ -20,7 +20,18 @@
}
}
}
@media (min-width: 1280px) {
.videoBox {
width: 288apx !important;
height: 162apx !important;
}
}
@media (min-width: 1920px) {
.videoBox {
width: 430px !important;
height: 242px !important;
}
}
.videoModal {
&::after {
.focused(@boxShadow:0px, @borderRadius: 0px);

View File

@@ -26,6 +26,18 @@
}
}
}
@media (min-width: 1280px) {
.videoBox {
width: 288apx !important;
height: 162apx !important;
}
}
@media (min-width: 1920px) {
.videoBox {
width: 430px !important;
height: 242px !important;
}
}
.videoModal {
&::after {
.focused(@boxShadow:0px, @borderRadius: 0px);