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 {