From 1aa39392ab214d19f8eec9ba0c4b23182331c262 Mon Sep 17 00:00:00 2001 From: Trang Le Date: Mon, 15 Sep 2025 17:13:07 +0700 Subject: [PATCH] set bullet list style to be circle (#6437) --- web-app/src/styles/markdown.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web-app/src/styles/markdown.css b/web-app/src/styles/markdown.css index a3f0c2a9c..ad58dd87e 100644 --- a/web-app/src/styles/markdown.css +++ b/web-app/src/styles/markdown.css @@ -77,6 +77,10 @@ list-style-type: disc; } + ul > li { + list-style-type: circle; + } + ol { list-style-type: decimal; }