fix: 메인 홈 - 시리즈

- 이미지 사이즈 수정: 168*238 => 160*227
This commit is contained in:
Yu Sung
2025-07-14 23:22:01 +09:00
parent 67f286687f
commit eb9ef3065b

View File

@@ -21,7 +21,7 @@ struct SeriesItemView: View {
.cancelOnDisappear(true) .cancelOnDisappear(true)
.resizable() .resizable()
.scaledToFill() .scaledToFill()
.frame(width: 168, height: 238, alignment: .center) .frame(width: 160, height: 227, alignment: .center)
.cornerRadius(16) .cornerRadius(16)
.clipped() .clipped()
@@ -83,7 +83,7 @@ struct SeriesItemView: View {
.padding(.trailing, 8) .padding(.trailing, 8)
} }
} }
.frame(width: 168, height: 238, alignment: .center) .frame(width: 160, height: 227, alignment: .center)
Text(item.title) Text(item.title)
.font(.custom(Font.preRegular.rawValue, size: 18)) .font(.custom(Font.preRegular.rawValue, size: 18))
@@ -97,7 +97,7 @@ struct SeriesItemView: View {
.lineLimit(1) .lineLimit(1)
.padding(.horizontal, 8) .padding(.horizontal, 8)
} }
.frame(width: 168) .frame(width: 160)
.contentShape(Rectangle()) .contentShape(Rectangle())
.onTapGesture { .onTapGesture {
if !token.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty { if !token.trimmingCharacters(in: .whitespacesAndNewlines).isEmpty {