From 1c09f6a055feb5b0f67e01840461756feb61a011 Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Wed, 27 Dec 2023 00:23:28 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9D=BC=EC=9D=B4=EB=B8=8C=20=EC=B1=84?= =?UTF-8?q?=ED=8C=85=20=ED=8F=B0=ED=8A=B8=20=EC=82=AC=EC=9D=B4=EC=A6=88=20?= =?UTF-8?q?AS-IS=20:=2014sp=20TO-BE=20:=2015sp?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Live/Room/Chat/LiveRoomChatItemView.swift | 2 +- .../Chat/LiveRoomDonationChatItemView.swift | 6 +++--- .../LiveRoomRouletteDonationChatItemView.swift | 18 +++++++++--------- 3 files changed, 13 insertions(+), 13 deletions(-) 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)