오디션, 오디션 상세

- 오디션 리스트, 오디션 캐릭터 리스트 아이템 사이 간격 16.7 -> 25로 변경
This commit is contained in:
Yu Sung
2025-01-08 00:51:07 +09:00
parent 92608b5449
commit 63cfcecad5
2 changed files with 7 additions and 6 deletions

View File

@@ -41,9 +41,9 @@ struct AuditionDetailView: View {
Text("오디션 캐릭터")
.font(.custom(Font.bold.rawValue, size: 14.7))
.foregroundColor(Color.grayee)
.padding(.vertical, 15)
.padding(.top, 15)
LazyVStack(spacing: 15) {
LazyVStack(spacing: 25) {
ForEach(0..<response.roleList.count, id: \.self) {
let role = response.roleList[$0]
@@ -56,6 +56,7 @@ struct AuditionDetailView: View {
}
}
}
.padding(.top, 20)
}
.padding(.horizontal, 13.3)
.padding(.vertical, 8)