콘텐츠 메인 시리즈 탭 - 채널별 추천 시리즈

- 콘텐츠 간격 22 -> 13으로 변경
This commit is contained in:
Yu Sung 2025-02-25 14:23:06 +09:00
parent 023c22bf7c
commit 41f692a402
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ struct SeriesByChannelView: View {
@State private var selectedCreatorId = 0
var body: some View {
VStack(alignment: .leading, spacing: 20) {
VStack(alignment: .leading, spacing: 13.3) {
Text(title)
.font(.custom(Font.bold.rawValue, size: 18.3))
.foregroundColor(Color(hex: "eeeeee"))
@ -49,7 +49,7 @@ struct SeriesByChannelView: View {
ContentMainNoItemView()
} else {
ScrollView(.horizontal) {
HStack(spacing: 22) {
HStack(spacing: 13.3) {
ForEach(0..<seriesList.count, id: \.self) { index in
let item = seriesList[index]