라이브 채팅 폰트

AS-IS : Gmarket Sans
TO-BE : System Font
This commit is contained in:
Yu Sung
2023-12-26 22:22:06 +09:00
parent e43e485154
commit 55d35222a9
4 changed files with 15 additions and 15 deletions

View File

@@ -30,27 +30,27 @@ struct LiveRoomDonationChatItemView: View {
VStack(alignment: .leading, spacing: 6.7) {
HStack(spacing: 0) {
Text(chatMessage.nickname)
.font(.custom(Font.medium.rawValue, size: 12))
.font(.system(size: 12))
.foregroundColor(.white)
Text("님이")
.font(.custom(Font.light.rawValue, size: 12))
.font(.system(size: 12, weight: .light))
.foregroundColor(.white)
}
HStack(spacing: 0) {
Text("\(chatMessage.can)")
.font(.custom(Font.medium.rawValue, size: 13))
.font(.system(size: 13))
.foregroundColor(Color(hex: "fdca2f"))
Text("을 후원하셨습니다.")
.font(.custom(Font.medium.rawValue, size: 13))
.font(.system(size: 13))
.foregroundColor(.white)
}
if !chatMessage.donationMessage.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {
Text("\"\(chatMessage.donationMessage)\"")
.font(.custom(Font.medium.rawValue, size: 13))
.font(.system(size: 13))
.foregroundColor(.white)
}
}