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)