From 71ad979ffd9d30b37a444ff530804f6bad94656e Mon Sep 17 00:00:00 2001 From: sven <66483176+sb-git-cloud@users.noreply.github.com> Date: Wed, 7 Aug 2024 10:50:16 -0700 Subject: [PATCH] fixed list rendering (#3273) --- frontend/src/index.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/src/index.css b/frontend/src/index.css index 6e3a605ba0..a981d6b341 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -40,3 +40,12 @@ code { padding: 0; background-color: inherit; } + +.markdown-body { + white-space: pre-wrap; /* Handles line breaks */ +} + +.markdown-body ul { + list-style-type: disc; /* Handles bullet points */ + margin-left: 20px; +}