feat(creator-profile): 시리즈 섹션 UI 변경
This commit is contained in:
		@@ -15,19 +15,20 @@ struct UserProfileSeriesView: View {
 | 
			
		||||
        VStack(alignment: .leading, spacing: 13.3) {
 | 
			
		||||
            HStack(spacing: 0) {
 | 
			
		||||
                Text("시리즈")
 | 
			
		||||
                    .font(.custom(Font.bold.rawValue, size: 18.3))
 | 
			
		||||
                    .foregroundColor(Color.grayee)
 | 
			
		||||
                    .font(.custom(Font.preBold.rawValue, size: 26))
 | 
			
		||||
                    .foregroundColor(Color.white)
 | 
			
		||||
                
 | 
			
		||||
                Spacer()
 | 
			
		||||
                
 | 
			
		||||
                Text("전체보기")
 | 
			
		||||
                    .font(.custom(Font.light.rawValue, size: 11.3))
 | 
			
		||||
                    .foregroundColor(Color.grayee)
 | 
			
		||||
                    .font(.custom(Font.preLight.rawValue, size: 14))
 | 
			
		||||
                    .foregroundColor(Color(hex: "78909C"))
 | 
			
		||||
                    .onTapGesture {
 | 
			
		||||
                        AppState.shared
 | 
			
		||||
                            .setAppStep(step: .seriesAll(creatorId: creatorId))
 | 
			
		||||
                    }
 | 
			
		||||
            }
 | 
			
		||||
            .padding(.horizontal, 24)
 | 
			
		||||
            
 | 
			
		||||
            ScrollView(.horizontal, showsIndicators: false) {
 | 
			
		||||
                HStack(alignment: .top, spacing: 13.3) {
 | 
			
		||||
@@ -36,6 +37,7 @@ struct UserProfileSeriesView: View {
 | 
			
		||||
                        SeriesListBigItemView(item: item, isVisibleCreator: false)
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
                .padding(.horizontal, 24)
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user