라이브 채팅 폰트

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

@@ -95,7 +95,7 @@ struct LiveRoomChatItemView: View {
HStack(spacing: 5) {
if chatMessage.rank == -3 {
Text("스탭")
.font(.custom(Font.medium.rawValue, size: 10))
.font(.system(size: 10))
.foregroundColor(.white)
.padding(2)
.background(Color(hex: "4999e3"))
@@ -103,12 +103,12 @@ struct LiveRoomChatItemView: View {
}
Text(chatMessage.nickname)
.font(.custom(Font.light.rawValue, size: 12))
.font(.system(size: 12, weight: .light))
.foregroundColor(.white)
}
Text(chatMessage.chat)
.font(.custom(Font.medium.rawValue, size: 14))
.font(.system(size: 14))
.foregroundColor(.white)
.multilineTextAlignment(.leading)
.lineLimit(nil)