From 8fc759da991bba53ded6a33f13c8cf15ca930da9 Mon Sep 17 00:00:00 2001 From: lucaronin Date: Mon, 16 Feb 2026 14:24:15 +0100 Subject: [PATCH] fix: remove vertical nesting lines for cleaner list appearance --- src/components/EditorTheme.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/EditorTheme.css b/src/components/EditorTheme.css index ac53f9a2..979cf936 100644 --- a/src/components/EditorTheme.css +++ b/src/components/EditorTheme.css @@ -130,11 +130,9 @@ margin-left: var(--lists-indent-size); } -/* Align the vertical nesting lines with the center of the parent bullet. - BlockNote draws the line via ::before on .bn-block-outer inside nested groups. - We adjust its left position to align with the bullet center. */ +/* Hide the vertical nesting lines — cleaner without them */ .editor__blocknote-container .bn-block-group .bn-block-group .bn-block-outer::before { - left: calc(var(--lists-indent-size) / 2) !important; + border-left: none !important; } /* --- Numbered lists --- */