Merge pull request #1205 from omnivore-app/fix/feed-padding

Add a little padding between title/author
This commit is contained in:
Jackson Harper
2022-09-16 16:34:29 +08:00
committed by GitHub

View File

@ -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)")