Replace Divider with ThiccDivider

This commit is contained in:
William Casarin
2023-04-03 13:57:57 -07:00
parent 4996272942
commit 02c973fbb2
5 changed files with 33 additions and 8 deletions

View File

@@ -212,7 +212,7 @@ struct EventGroupView: View {
NavigationLink(destination: dest) {
VStack(alignment: .leading) {
GroupDescription
EventBody(damus_state: state, event: event, size: .normal, options: [.truncate_content])
EventBody(damus_state: state, event: event, size: .normal, options: [])
.padding([.top], 1)
.foregroundColor(.gray)
}

View File

@@ -57,8 +57,7 @@ struct NotificationItemView: View {
.buttonStyle(.plain)
}
Divider()
.padding([.top,.bottom], 5)
ThiccDivider()
}
}

View File

@@ -52,7 +52,7 @@ struct InnerTimelineView: View {
}
.padding(.top, 7)
Divider()
ThiccDivider()
.padding([.top], 7)
}
}