[SHOPTIME-3045] Player / 우측 하단 시간 표시가 PC와 다르게 정렬이 틀어짐

1. Times.module.less
- 원인: font-family 미적용으로 인한 position 뒤틀림
- 대책: font-family 적용
This commit is contained in:
younghoon100.park
2024-10-28 16:42:26 +09:00
parent 7e74373b4d
commit d1f4aa977c

View File

@@ -1,13 +1,14 @@
// Times.module.less
//
@import "~@enact/sandstone/styles/variables.less"; @import "~@enact/sandstone/styles/variables.less";
@import "~@enact/sandstone/styles/mixins.less"; @import "~@enact/sandstone/styles/mixins.less";
@import "../../style/utils.module.less";
@import "../../style/CommonStyle.module.less";
.times { .times {
position: absolute; position: absolute;
font-family: "LGSmartUI"; font-family: @baseFont;
width: 100%; width: 100%;
top: 22px; top: 22px;
right: 30px;
font-size: 24px; font-size: 24px;
font-weight: bold; font-weight: bold;
line-height: 30px; line-height: 30px;
@@ -15,12 +16,13 @@
.separator { .separator {
position: absolute; position: absolute;
right: 113px; right: 110px;
} }
.currentTime { .currentTime {
position: absolute; position: absolute;
right: 140px; right: 140px;
} }
> * { > * {
color: #fff; color: #fff;
} }