라이브 채팅 폰트

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

@@ -14,15 +14,15 @@ struct LiveRoomJoinChatItemView: View {
var body: some View {
HStack(spacing: 0) {
Text("'")
.font(.custom(Font.medium.rawValue, size: 12))
.font(.system(size: 12))
.foregroundColor(Color(hex: "eeeeee"))
Text(chatMessage.nickname)
.font(.custom(Font.bold.rawValue, size: 12))
.font(.system(size: 12, weight: .bold))
.foregroundColor(Color(hex: "ffdc00"))
Text("'님이 입장하셨습니다.")
.font(.custom(Font.medium.rawValue, size: 12))
.font(.system(size: 12))
.foregroundColor(Color(hex: "eeeeee"))
}
.padding(.vertical, 6.7)