Showing
1 changed file
with
2 additions
and
2 deletions
| @@ -89,8 +89,8 @@ export struct PlayUIComponent { | @@ -89,8 +89,8 @@ export struct PlayUIComponent { | ||
| 89 | Text(this.liveDetailsBean.newsTitle) | 89 | Text(this.liveDetailsBean.newsTitle) |
| 90 | .maxLines(1) | 90 | .maxLines(1) |
| 91 | .textOverflow({ overflow: TextOverflow.MARQUEE }) | 91 | .textOverflow({ overflow: TextOverflow.MARQUEE }) |
| 92 | - .fontSize('16fp') | ||
| 93 | - .fontWeight(500) | 92 | + .fontSize(this.displayDirection == DisplayDirection.VIDEO_HORIZONTAL ? '18vp' : '16vp') |
| 93 | + .fontWeight(this.displayDirection == DisplayDirection.VIDEO_HORIZONTAL ? 600 : 500) | ||
| 94 | .fontColor(Color.White) | 94 | .fontColor(Color.White) |
| 95 | .textAlign(TextAlign.Start) | 95 | .textAlign(TextAlign.Start) |
| 96 | .layoutWeight(1) | 96 | .layoutWeight(1) |
-
Please register or login to post a comment