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
commit 593cbc6f9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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