Skip to content

Commit

Permalink
Update paddings
Browse files Browse the repository at this point in the history
  • Loading branch information
quanganhdo committed Nov 20, 2024
1 parent 8bb14d6 commit b9bbf23
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ private struct IssueDescriptionFormView: View {
TextField(UserText.pproFeedbackFormEmailPlaceholder, text: $viewModel.userEmail)
.font(.body)
.foregroundColor(.primary)
.padding(EdgeInsets(top: 8, leading: 4, bottom: 8, trailing: 4))
.padding(EdgeInsets(top: 8, leading: 16, bottom: 8, trailing: 16))
.clipShape(RoundedRectangle(cornerRadius: 8.0, style: .continuous))
.background(
ZStack {
Expand Down Expand Up @@ -415,8 +415,8 @@ private struct TextEditorWithPlaceholder: View {
Text(placeholder)
.foregroundColor(.secondary)
.opacity(0.5)
.padding(.top, 8)
.padding(.leading, 5)
.padding(.top, 10)
.padding(.leading, 16)
}
}
}
Expand Down

0 comments on commit b9bbf23

Please sign in to comment.