라이브 채팅 폰트 사이즈

AS-IS : 14sp
TO-BE : 15sp
This commit is contained in:
Yu Sung 2023-12-27 00:23:28 +09:00
parent 9a74567643
commit 1c09f6a055
3 changed files with 13 additions and 13 deletions

View File

@ -108,7 +108,7 @@ struct LiveRoomChatItemView: View {
}
Text(chatMessage.chat)
.font(.system(size: 14))
.font(.system(size: 15))
.foregroundColor(.white)
.multilineTextAlignment(.leading)
.lineLimit(nil)

View File

@ -40,17 +40,17 @@ struct LiveRoomDonationChatItemView: View {
HStack(spacing: 0) {
Text("\(chatMessage.can)")
.font(.system(size: 13))
.font(.system(size: 15))
.foregroundColor(Color(hex: "fdca2f"))
Text("을 후원하셨습니다.")
.font(.system(size: 13))
.font(.system(size: 15))
.foregroundColor(.white)
}
if !chatMessage.donationMessage.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
Text("\"\(chatMessage.donationMessage)\"")
.font(.system(size: 13))
.font(.system(size: 15))
.foregroundColor(.white)
}
}

View File

@ -38,15 +38,15 @@ struct LiveRoomRouletteDonationChatItemView: View {
.foregroundColor(.white)
}
HStack(spacing: 0) {
Text("[\(chatMessage.rouletteResult)]")
.font(.system(size: 13))
.foregroundColor(Color(hex: "ffe500"))
Text(" 당첨!")
.font(.system(size: 13))
.foregroundColor(.white)
}
Text("[\(chatMessage.rouletteResult)]")
.font(.system(size: 15))
.foregroundColor(Color(hex: "ffe500"))
+
Text(" 당첨!")
.font(.system(size: 15))
.foregroundColor(.white)
}
}
.padding(13)