From 76c0c843cdf6a044aa0a50d2c204de4d40bff474 Mon Sep 17 00:00:00 2001 From: Thomas Ricouard Date: Thu, 9 Feb 2023 07:49:15 +0100 Subject: [PATCH] Profile: Add a gap between pinned posts and other posts --- Packages/Account/Sources/Account/AccountDetailView.swift | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Packages/Account/Sources/Account/AccountDetailView.swift b/Packages/Account/Sources/Account/AccountDetailView.swift index 999650b3..5568c06d 100644 --- a/Packages/Account/Sources/Account/AccountDetailView.swift +++ b/Packages/Account/Sources/Account/AccountDetailView.swift @@ -339,8 +339,9 @@ public struct AccountDetailView: View { StatusRowView(viewModel: .init(status: status)) } .padding(.horizontal, .layoutPadding) - Divider() - .padding(.vertical, .dividerPadding) + Rectangle() + .frame(height: 12) + .foregroundColor(theme.secondaryBackgroundColor) } } }