시리즈 아이템
- 상단을 기준으로 정렬이 되도록 수정
This commit is contained in:
@@ -30,7 +30,7 @@ struct UserProfileSeriesView: View {
|
||||
}
|
||||
|
||||
ScrollView(.horizontal, showsIndicators: false) {
|
||||
HStack(spacing: 13.3) {
|
||||
HStack(alignment: .top, spacing: 13.3) {
|
||||
ForEach(0..<items.count, id: \.self) {
|
||||
let item = items[$0]
|
||||
SeriesListBigItemView(item: item)
|
||||
|
@@ -49,7 +49,7 @@ struct UserProfileCreatorView: View {
|
||||
.padding(.horizontal, 16)
|
||||
.overlay(
|
||||
RoundedRectangle(cornerRadius: 16.7)
|
||||
.stroke(Color(hex: "9970ff"), lineWidth: 1)
|
||||
.stroke(Color.button, lineWidth: 1)
|
||||
)
|
||||
.padding(.top, 13.3)
|
||||
.onTapGesture {
|
||||
@@ -79,7 +79,7 @@ struct UserProfileCreatorView: View {
|
||||
|
||||
Text(creator.tags.map { "#\($0)" }.joined(separator: " "))
|
||||
.font(.custom(Font.medium.rawValue, size: 13.3))
|
||||
.foregroundColor(Color(hex: "9970ff"))
|
||||
.foregroundColor(Color.button)
|
||||
.padding(.top, creator.tags.count > 0 ? 13.3 : 0)
|
||||
|
||||
HStack(spacing: 10) {
|
||||
|
Reference in New Issue
Block a user