From ee40ea8be0664abbedc24b83dce9836f35a78bb6 Mon Sep 17 00:00:00 2001 From: PhilReact Date: Thu, 27 Feb 2025 21:41:57 +0200 Subject: [PATCH] fixed line break display --- src/components/Chat/styles.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/Chat/styles.css b/src/components/Chat/styles.css index 4cbdcc5..fba2383 100644 --- a/src/components/Chat/styles.css +++ b/src/components/Chat/styles.css @@ -113,6 +113,11 @@ pointer-events: none; } +.tiptap p:empty::before { + content: ''; + display: inline-block; +} + .tiptap a { color: cadetblue }