From c0bca69eeb378ba0af65013ceb02f4a52244a2b9 Mon Sep 17 00:00:00 2001 From: openhands Date: Sat, 28 Sep 2024 15:42:21 +0000 Subject: [PATCH] Fix issue #4082: [Bug]: Reduce padding in lists inside of messages --- frontend/src/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/index.css b/frontend/src/index.css index d458c973bd..9b380d3ddf 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -53,8 +53,8 @@ code { .markdown-body ul { list-style-type: disc; /* Handles bullet points */ - margin-left: 20px; - padding-left: 0.5em; /* Adds some indentation */ + margin-left: 10px; + padding-left: 0.25em; /* Reduces indentation */ } .markdown-body th {