Reduced padding for more information density

Changelog-Changed: Reduced padding for more information density
This commit is contained in:
William Casarin
2023-03-25 06:51:56 -06:00
parent b6d5b6f45e
commit 61fddf800e
2 changed files with 4 additions and 4 deletions

View File

@@ -35,9 +35,10 @@ struct TextEvent: View {
Spacer()
}
VStack(alignment: .leading) {
VStack(alignment: .leading, spacing: 1) {
HStack(alignment: .center, spacing: 0) {
let pk = is_anon ? "anon" : pubkey
EventProfileName(pubkey: pk, profile: profile, damus: damus, show_friend_confirmed: true, size: .normal)
Text(verbatim: "")
@@ -53,7 +54,6 @@ struct TextEvent: View {
.padding([.bottom], 4)
}
.minimumScaleFactor(0.75)
.lineLimit(1)
EventBody(damus_state: damus, event: event, size: .normal)

View File

@@ -42,10 +42,10 @@ struct InnerTimelineView: View {
nav_target = ev.inner_event ?? ev
navigating = true
}
.padding(.top, 10)
.padding(.top, 5)
Divider()
.padding([.top], 10)
.padding([.top], 5)
}
}
}