From 4f56ff3dfb25eaacfac70e0a7bf946bfb11c6eae Mon Sep 17 00:00:00 2001 From: William Casarin Date: Mon, 17 Jul 2023 08:42:35 -0700 Subject: [PATCH] longform: add padding under words count Changelog-Added: Added padding under word count on longform account --- damus/Views/NoteContentView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/NoteContentView.swift b/damus/Views/NoteContentView.swift index 544de853..43fd13ad 100644 --- 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) }