fix: 메인 홈

- 콘텐츠 폰트 pretendard로 변경
- 시리즈 이미지 하단에 블랙 제거
This commit is contained in:
Yu Sung
2025-07-15 03:47:50 +09:00
parent 48e60bff57
commit ea235b62d7
2 changed files with 3 additions and 7 deletions

View File

@@ -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)