From bbd12e759635cc7b3f2eeca2d1116444110b59b2 Mon Sep 17 00:00:00 2001 From: Hyko Date: Sun, 26 Apr 2026 12:01:13 -0400 Subject: [PATCH] style(BlockEditor): adjust container padding values --- src/shared/components/BlockEditor/BlockEditor.client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/components/BlockEditor/BlockEditor.client.js b/src/shared/components/BlockEditor/BlockEditor.client.js index a42d9d6..fcab9dc 100644 --- a/src/shared/components/BlockEditor/BlockEditor.client.js +++ b/src/shared/components/BlockEditor/BlockEditor.client.js @@ -1016,7 +1016,7 @@ export default function BlockEditor({ onKeyDown={handleGlobalKeyDown} onMouseDownCapture={handleContainerMouseDown} style={minHeight != null ? { minHeight: typeof minHeight === 'number' ? `${minHeight}px` : minHeight } : undefined} - className={`block-editor border rounded-xl bg-white dark:bg-neutral-900/60 px-3 py-6 ${error ? 'border-red-500/50' : 'border-neutral-300 dark:border-neutral-700/50'} ${blocks.length === 1 && inlineLength(blocks[0].content ?? []) === 0 ? 'block-editor--sole-empty' : ''} ${className}`} + className={`block-editor border rounded-xl bg-white dark:bg-neutral-900/60 pl-0 pr-[45px] py-5 ${error ? 'border-red-500/50' : 'border-neutral-300 dark:border-neutral-700/50'} ${blocks.length === 1 && inlineLength(blocks[0].content ?? []) === 0 ? 'block-editor--sole-empty' : ''} ${className}`} > {blocks.map((block, i) => (