Reduced padding for more information density
Changelog-Changed: Reduced padding for more information density
This commit is contained in:
@@ -35,9 +35,10 @@ struct TextEvent: View {
|
|||||||
Spacer()
|
Spacer()
|
||||||
}
|
}
|
||||||
|
|
||||||
VStack(alignment: .leading) {
|
VStack(alignment: .leading, spacing: 1) {
|
||||||
HStack(alignment: .center, spacing: 0) {
|
HStack(alignment: .center, spacing: 0) {
|
||||||
let pk = is_anon ? "anon" : pubkey
|
let pk = is_anon ? "anon" : pubkey
|
||||||
|
|
||||||
EventProfileName(pubkey: pk, profile: profile, damus: damus, show_friend_confirmed: true, size: .normal)
|
EventProfileName(pubkey: pk, profile: profile, damus: damus, show_friend_confirmed: true, size: .normal)
|
||||||
|
|
||||||
Text(verbatim: "⋅")
|
Text(verbatim: "⋅")
|
||||||
@@ -53,7 +54,6 @@ struct TextEvent: View {
|
|||||||
.padding([.bottom], 4)
|
.padding([.bottom], 4)
|
||||||
|
|
||||||
}
|
}
|
||||||
.minimumScaleFactor(0.75)
|
|
||||||
.lineLimit(1)
|
.lineLimit(1)
|
||||||
|
|
||||||
EventBody(damus_state: damus, event: event, size: .normal)
|
EventBody(damus_state: damus, event: event, size: .normal)
|
||||||
|
|||||||
@@ -42,10 +42,10 @@ struct InnerTimelineView: View {
|
|||||||
nav_target = ev.inner_event ?? ev
|
nav_target = ev.inner_event ?? ev
|
||||||
navigating = true
|
navigating = true
|
||||||
}
|
}
|
||||||
.padding(.top, 10)
|
.padding(.top, 5)
|
||||||
|
|
||||||
Divider()
|
Divider()
|
||||||
.padding([.top], 10)
|
.padding([.top], 5)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user