From 1f42d7dff0fa2cfbaac2aa2912b8b3c0d56e42fc Mon Sep 17 00:00:00 2001 From: Krille Date: Wed, 17 May 2023 13:25:39 +0200 Subject: [PATCH] chore: Add missing blockquote style --- lib/pages/chat/events/html_message.dart | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/pages/chat/events/html_message.dart b/lib/pages/chat/events/html_message.dart index adc691c7..9d5a982a 100644 --- a/lib/pages/chat/events/html_message.dart +++ b/lib/pages/chat/events/html_message.dart @@ -59,6 +59,15 @@ class HtmlMessage extends StatelessWidget { 'h4': Style(fontSize: FontSize(fontSize * 1.75)), 'h5': Style(fontSize: FontSize(fontSize * 1.5)), 'h6': Style(fontSize: FontSize(fontSize * 1.25)), + 'blockquote': Style( + border: Border( + left: BorderSide( + width: 3, + color: textColor ?? Colors.black, + ), + ), + padding: const EdgeInsets.only(left: 6), + ), // Otherwise list tiles are all in the same row$$ 'li': Style(display: Display.block), },