From ca49d8bfc6b9895af2711be7baba9b759f560f5b Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Tue, 3 May 2022 14:48:49 +0200 Subject: [PATCH] Increase vertical padding in profile rows --- Passepartout/App/Views/ProfileRow.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Passepartout/App/Views/ProfileRow.swift b/Passepartout/App/Views/ProfileRow.swift index a6567a3c..0a05febe 100644 --- a/Passepartout/App/Views/ProfileRow.swift +++ b/Passepartout/App/Views/ProfileRow.swift @@ -40,7 +40,7 @@ struct ProfileRow: View { VPNStateView(isActive: isActive) .font(.subheadline) - }.padding([.top, .bottom], 5) + }.padding([.top, .bottom], 10) .opacity(isActive ? 1.0 : 0.5) }