diff --git a/SodaLive/Sources/Live/Room/Chat/LiveRoomChatItemView.swift b/SodaLive/Sources/Live/Room/Chat/LiveRoomChatItemView.swift index 35f63a7..7928737 100644 --- a/SodaLive/Sources/Live/Room/Chat/LiveRoomChatItemView.swift +++ b/SodaLive/Sources/Live/Room/Chat/LiveRoomChatItemView.swift @@ -108,7 +108,7 @@ struct LiveRoomChatItemView: View { } Text(chatMessage.chat) - .font(.system(size: 14)) + .font(.system(size: 15)) .foregroundColor(.white) .multilineTextAlignment(.leading) .lineLimit(nil) diff --git a/SodaLive/Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift b/SodaLive/Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift index e6afa46..d67feab 100644 --- a/SodaLive/Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift +++ b/SodaLive/Sources/Live/Room/Chat/LiveRoomDonationChatItemView.swift @@ -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) } } diff --git a/SodaLive/Sources/Live/Room/Chat/LiveRoomRouletteDonationChatItemView.swift b/SodaLive/Sources/Live/Room/Chat/LiveRoomRouletteDonationChatItemView.swift index 69bc817..33f0b1e 100644 --- a/SodaLive/Sources/Live/Room/Chat/LiveRoomRouletteDonationChatItemView.swift +++ b/SodaLive/Sources/Live/Room/Chat/LiveRoomRouletteDonationChatItemView.swift @@ -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)