From ea235b62d7873ae196e5ec98b8393dfa1dd9e50f Mon Sep 17 00:00:00 2001 From: Yu Sung Date: Tue, 15 Jul 2025 03:47:50 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EB=A9=94=EC=9D=B8=20=ED=99=88=20-=20?= =?UTF-8?q?=EC=BD=98=ED=85=90=EC=B8=A0=20=ED=8F=B0=ED=8A=B8=20pretendard?= =?UTF-8?q?=EB=A1=9C=20=EB=B3=80=EA=B2=BD=20-=20=EC=8B=9C=EB=A6=AC?= =?UTF-8?q?=EC=A6=88=20=EC=9D=B4=EB=AF=B8=EC=A7=80=20=ED=95=98=EB=8B=A8?= =?UTF-8?q?=EC=97=90=20=EB=B8=94=EB=9E=99=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SodaLive/Sources/Content/ContentItemView.swift | 4 ++-- SodaLive/Sources/Content/Series/SeriesItemView.swift | 6 +----- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/SodaLive/Sources/Content/ContentItemView.swift b/SodaLive/Sources/Content/ContentItemView.swift index 75409f0..c0c7520 100644 --- a/SodaLive/Sources/Content/ContentItemView.swift +++ b/SodaLive/Sources/Content/ContentItemView.swift @@ -36,7 +36,7 @@ struct ContentItemView: View { } Text(item.title) - .font(.custom(Font.medium.rawValue, size: 18)) + .font(.custom(Font.preRegular.rawValue, size: 18)) .foregroundColor(.white) .multilineTextAlignment(.leading) .fixedSize(horizontal: false, vertical: true) @@ -46,7 +46,7 @@ struct ContentItemView: View { Text(item.creatorNickname) - .font(.custom(Font.medium.rawValue, size: 14)) + .font(.custom(Font.preRegular.rawValue, size: 14)) .foregroundColor(Color(hex: "78909C")) .lineLimit(1) .padding(.horizontal, 6) diff --git a/SodaLive/Sources/Content/Series/SeriesItemView.swift b/SodaLive/Sources/Content/Series/SeriesItemView.swift index de5fc6d..e10d954 100644 --- a/SodaLive/Sources/Content/Series/SeriesItemView.swift +++ b/SodaLive/Sources/Content/Series/SeriesItemView.swift @@ -16,7 +16,7 @@ struct SeriesItemView: View { var body: some View { VStack(alignment: .leading, spacing: 4) { - ZStack(alignment: .bottom) { + ZStack { KFImage(URL(string: item.coverImage)) .cancelOnDisappear(true) .resizable() @@ -25,10 +25,6 @@ struct SeriesItemView: View { .cornerRadius(16) .clipped() - Color.black.opacity(0.5) - .frame(width: 160, height: 35) - .cornerRadius(16, corners: [.bottomLeft, .bottomRight]) - VStack(alignment: .leading, spacing: 0) { HStack(spacing: 0) { if item.isPopular {