Add a little more spacing between lines and before labels

This commit is contained in:
Jackson Harper 2022-05-05 11:45:39 -07:00
parent f50357d385
commit 6995cc29da

View file

@ -12,7 +12,7 @@ public struct FeedCard: View {
public var body: some View {
VStack {
HStack(alignment: .top, spacing: 6) {
VStack(alignment: .leading, spacing: 2) {
VStack(alignment: .leading, spacing: 4) {
Text(item.unwrappedTitle)
.font(.appCallout)
.foregroundColor(.appGrayTextContrast)
@ -73,7 +73,7 @@ public struct FeedCard: View {
Spacer()
}
}
.padding(.top, 2)
.padding(.top, 8)
.padding(.bottom, 2)
}
.padding(.top, 16)