From ce5215eea03d7a4d2db18098225754b9d856cb75 Mon Sep 17 00:00:00 2001 From: kimjaehyeon0101 <47347352-kimjaehyeon0101@users.noreply.replit.com> Date: Tue, 14 Oct 2025 09:22:55 +0000 Subject: [PATCH] Align bullet points and list items to the left in reports Adjusted text alignment for `ul`, `ol`, and `li` elements within the Report component to `text-align: left !important`. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 9a264234-c5d7-4dcc-adf3-a954b149b30d Replit-Commit-Checkpoint-Type: intermediate_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/3df548ff-50ae-432f-9be4-25d34eccc983/9a264234-c5d7-4dcc-adf3-a954b149b30d/6ZMblp5 --- client/src/pages/Report.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/pages/Report.tsx b/client/src/pages/Report.tsx index c6e73c1..2420e79 100644 --- a/client/src/pages/Report.tsx +++ b/client/src/pages/Report.tsx @@ -356,6 +356,7 @@ export default function Report() { ul, ol { margin-bottom: 20px !important; padding-left: 32px !important; + text-align: left !important; } li { @@ -363,6 +364,7 @@ export default function Report() { line-height: 1.8 !important; color: #4b5563 !important; margin-bottom: 10px !important; + text-align: left !important; } .highlight {