From 014f846b7a242b41cafebe9abc974229545da023 Mon Sep 17 00:00:00 2001 From: Matthew Lipski Date: Fri, 21 Mar 2025 16:13:00 +0100 Subject: [PATCH] Fixed selection going to the wrong place when clicking to the right of a block's inline content --- packages/core/src/editor/Block.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/core/src/editor/Block.css b/packages/core/src/editor/Block.css index f8eb8c1d6..d76be3e1a 100644 --- a/packages/core/src/editor/Block.css +++ b/packages/core/src/editor/Block.css @@ -37,6 +37,10 @@ BASIC STYLES outline: 4px solid rgb(100, 160, 255); } +.bn-inline-content { + width: 100%; +} + /* NESTED BLOCKS */ @@ -188,6 +192,7 @@ NESTED BLOCKS /* Checked */ .bn-block-content[data-content-type="checkListItem"] > div { display: flex; + width: 100%; } .bn-block-content[data-content-type="checkListItem"] > div > div > input {