From 525f1e44737eb6feba0c5781803f880264e9f67f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20R=C3=A9?= Date: Wed, 25 Mar 2026 15:56:22 +0400 Subject: [PATCH] Fix lit item paragraph must be full size MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Émile Ré --- packages/ui/src/rich-editor.css | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/packages/ui/src/rich-editor.css b/packages/ui/src/rich-editor.css index 536bf6f15..7ddfe5518 100644 --- a/packages/ui/src/rich-editor.css +++ b/packages/ui/src/rich-editor.css @@ -19,21 +19,19 @@ h3 { @apply text-lg font-semibold mt-2; } ul { - @apply list-disc list-inside my-2; + @apply list-disc list-outside my-2 pl-4; li { - p { @apply inline-block my-0; } + p { @apply my-0; } } - li::marker { @apply mx-2!; } } ol { - @apply list-decimal list-inside my-2; + @apply list-decimal list-outside my-2 pl-4; li { p { @apply inline-block my-0; } } - li::marker { @apply mx-2!; } } a { @apply text-txt-info underline font-normal; }