From 37beb3f9c920fa59799e1d85f96de35a6e84adf6 Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Fri, 16 Sep 2022 16:29:50 +0800 Subject: [PATCH] Add a little padding between title/author --- apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift b/apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift index 21b509c10..1ff78a853 100644 --- a/apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift +++ b/apple/OmnivoreKit/Sources/Views/FeedItem/HomeFeedCardView.swift @@ -18,6 +18,7 @@ public struct FeedCard: View { .lineSpacing(1.25) .foregroundColor(.appGrayTextContrast) .fixedSize(horizontal: false, vertical: true) + .padding(EdgeInsets(top: 0, leading: 0, bottom: 2, trailing: 0)) if let author = item.author { Text("By \(author)")