commit 7fdd2de273ea60484d0f8b4190f97a0f7f595134 parent dbebf4384a5315df7f6797da35338c264d75e8be Author: FIGBERT <figbert@figbert.com> Date: Thu, 15 Sep 2022 17:07:07 -0700 Style unordered list Diffstat:
M | Shared/CapsuleView.swift | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/Shared/CapsuleView.swift b/Shared/CapsuleView.swift @@ -59,7 +59,10 @@ struct CapsuleView: View { Text(str).font(.title).padding(.top) } case .UnorderedList(let str): - Text("· \(str)") + HStack(alignment: .center) { + Text("•").font(.system(size: 20)) + Text(str).font(.system(size: 16.5)) + } case .Quote(let str): if !str.isEmpty { HStack {