diff --git a/damus/Views/TextViewWrapper.swift b/damus/Views/TextViewWrapper.swift index 15d10c2a..c43c4e48 100644 --- a/damus/Views/TextViewWrapper.swift +++ b/damus/Views/TextViewWrapper.swift @@ -13,7 +13,7 @@ struct TextViewWrapper: UIViewRepresentable { func makeUIView(context: Context) -> UITextView { let textView = UITextView() textView.delegate = context.coordinator - textView.font = UIFont.systemFont(ofSize: 18) + textView.font = UIFont.preferredFont(forTextStyle: .body) textView.textColor = UIColor.label let linkAttributes: [NSAttributedString.Key : Any] = [ NSAttributedString.Key.foregroundColor: UIColor(Color.accentColor)]