From ef11a0ae2877dc6d6e10bd63067d0c737d2d2bfe Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Tue, 15 Jul 2025 00:46:07 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=A9=94=EC=9D=B8=20=ED=99=88=20-=20?= =?UTF-8?q?=EB=B3=B4=EC=98=A8=20=EC=A3=BC=EA=B0=84=20=EC=B0=A8=ED=8A=B8=20?= =?UTF-8?q?=EC=82=AC=EC=9D=B4=EC=A6=88=20=EC=88=98=EC=A0=95=20-=20?= =?UTF-8?q?=EC=95=84=EC=9D=B4=ED=85=9C=20=EC=82=AC=EC=9D=B4=EC=A6=88=20282?= =?UTF-8?q?=20->=20280=20-=20=EC=95=84=EC=9D=B4=ED=85=9C=20=ED=95=AD?= =?UTF-8?q?=EB=AA=A9=20=EC=82=AC=EC=9D=B4=EC=A6=88=20=ED=95=A9=EA=B3=84:?= =?UTF-8?q?=20180=20->=20252=20-=20=EC=88=9C=EC=9C=84=20=EA=B8=80=EC=9E=90?= =?UTF-8?q?=20=ED=81=AC=EA=B8=B0:=2016.7=20->=2024?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Home/HomeWeeklyChartItemView.swift | 4 ++-- SodaLive/Sources/Home/HomeWeeklyChartView.swift | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SodaLive/Sources/Home/HomeWeeklyChartItemView.swift b/SodaLive/Sources/Home/HomeWeeklyChartItemView.swift index 261a347..3018b7b 100644 --- a/SodaLive/Sources/Home/HomeWeeklyChartItemView.swift +++ b/SodaLive/Sources/Home/HomeWeeklyChartItemView.swift @@ -17,7 +17,7 @@ struct HomeWeeklyChartItemView: View { var body: some View { HStack(spacing: 16) { Text("\(rank)") - .font(.custom(Font.preBold.rawValue, size: 16.7)) + .font(.custom(Font.preBold.rawValue, size: 24)) .foregroundColor(Color(hex: "B5E7FA")) KFImage(URL(string: content.coverImageUrl)) @@ -37,7 +37,7 @@ struct HomeWeeklyChartItemView: View { .foregroundColor(Color(hex: "78909C")) } } - .frame(width: 180, alignment: .leading) + .frame(width: 252, alignment: .leading) .contentShape(Rectangle()) .onTapGesture { onClickItem(content.contentId) } } diff --git a/SodaLive/Sources/Home/HomeWeeklyChartView.swift b/SodaLive/Sources/Home/HomeWeeklyChartView.swift index 3eea7b0..e60a04f 100644 --- a/SodaLive/Sources/Home/HomeWeeklyChartView.swift +++ b/SodaLive/Sources/Home/HomeWeeklyChartView.swift @@ -49,7 +49,7 @@ struct HomeWeeklyChartView: View { .setAppStep(step: .login) } } - .frame(width: 282, alignment: .leading) + .frame(width: 280, alignment: .leading) } } .padding(.horizontal, 24)