댓글 입력창

- 우측에 불필요한 빈칸 제거
This commit is contained in:
Yu Sung 2024-08-30 18:00:46 +09:00
parent 30a480232b
commit f4d95e6755
1 changed files with 5 additions and 7 deletions

View File

@ -86,8 +86,8 @@ struct AudioContentCommentListView: View {
.autocapitalization(.none)
.disableAutocorrection(true)
.font(.custom(Font.medium.rawValue, size: 13.3))
.foregroundColor(Color(hex: "eeeeee"))
.accentColor(Color(hex: "3bb9f1"))
.foregroundColor(Color.grayee)
.accentColor(Color.button)
.keyboardType(.default)
.padding(.horizontal, 13.3)
@ -102,20 +102,18 @@ struct AudioContentCommentListView: View {
viewModel.registerComment()
}
}
.background(Color(hex: "232323"))
.background(Color.gray23)
.cornerRadius(10)
.overlay(
RoundedRectangle(cornerRadius: 10)
.strokeBorder(lineWidth: 1)
.foregroundColor(Color(hex: "3bb9f1"))
.foregroundColor(Color.button)
)
Spacer()
}
.padding(.horizontal, 13.3)
Rectangle()
.foregroundColor(Color(hex: "595959"))
.foregroundColor(Color.gray59)
.frame(height: 0.5)
.padding(.top, 12)
.padding(.bottom, 13.3)