wuyanan

fix |> 修复直播间上墙标识的字体颜色和背景与安卓不一致问题

... ... @@ -255,14 +255,20 @@ export struct TabLiveItemComponent {
if (this.item.isWall == 1) {
Blank().layoutWeight(1)
Text() {
Span(' 上墙 ')
.foregroundColor("#CB0000")
.fontSize(11)
.lineHeight(20)
.textBackgroundStyle({ color: "#70FFC63F", radius: 2 })
}.lineHeight(20).fontSize('14fp').fontWeight(400)
Text(' 上墙 ')
.maxLines(1)
.textOverflow({ overflow: TextOverflow.Ellipsis })
.fontSize(11)
.fontWeight(400)
.fontColor("#CB0000")
.backgroundColor('#F1EFEB')
.padding({
left: 4,
top: 1,
right: 4,
bottom: 1
})
.borderRadius(2)
}
}
.alignItems(VerticalAlign.Top)
... ...