Skip to content

Commit

Permalink
Add some padding for scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
quanganhdo committed Jan 18, 2024
1 parent 21c5771 commit c6ab9ce
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion DuckDuckGo/Feedback/VPNFeedbackFormView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,11 @@ struct VPNFeedbackFormView: View {
.lineLimit(nil)
.fixedSize(horizontal: false, vertical: true)

TextEditor(text: $viewModel.feedbackFormText)
Spacer()
.frame(height: 1)
.id(1)

TextEditor(text: $viewModel.feedbackFormText)
.font(.body)
.foregroundColor(.primary)
.frame(height: 100)
Expand Down

0 comments on commit c6ab9ce

Please sign in to comment.