From b9bbf2312feba7e1731d14ab2084c322ff11712b Mon Sep 17 00:00:00 2001 From: Anh Do Date: Wed, 20 Nov 2024 16:19:09 -0500 Subject: [PATCH] Update paddings --- .../Subscription/Feedback/UnifiedFeedbackRootView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DuckDuckGo/Subscription/Feedback/UnifiedFeedbackRootView.swift b/DuckDuckGo/Subscription/Feedback/UnifiedFeedbackRootView.swift index 44d11d24f0..ea7c14104e 100644 --- a/DuckDuckGo/Subscription/Feedback/UnifiedFeedbackRootView.swift +++ b/DuckDuckGo/Subscription/Feedback/UnifiedFeedbackRootView.swift @@ -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 { @@ -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) } } }