damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 4f56ff3dfb25eaacfac70e0a7bf946bfb11c6eae
parent fd5940717129295e7d1670a9423b5565f19a85ec
Author: William Casarin <jb55@jb55.com>
Date:   Mon, 17 Jul 2023 08:42:35 -0700

longform: add padding under words count

Changelog-Added: Added padding under word count on longform account

Diffstat:
Mdamus/Views/NoteContentView.swift | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus/Views/NoteContentView.swift b/damus/Views/NoteContentView.swift @@ -215,7 +215,7 @@ struct NoteContentView: View { switch self.note_artifacts { case .longform(let md): Markdown(md.markdown) - .padding(.horizontal) + .padding([.leading, .trailing, .top]) case .separated(let separated): MainContent(artifacts: separated) }