From bf3eaf906912658db59e95eb542a70f85454e3c3 Mon Sep 17 00:00:00 2001 From: thisissandip Date: Tue, 14 Sep 2021 20:51:00 +0530 Subject: [PATCH] increase parent selector focus indicator width --- .../src/components/block-parent-selector/style.scss | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/packages/block-editor/src/components/block-parent-selector/style.scss b/packages/block-editor/src/components/block-parent-selector/style.scss index ca6d770a21228..a9edb8e7ec062 100644 --- a/packages/block-editor/src/components/block-parent-selector/style.scss +++ b/packages/block-editor/src/components/block-parent-selector/style.scss @@ -33,7 +33,12 @@ border-radius: 4px; height: 8px; width: 8px; - margin: 0 14px; + margin: 0 12px; } -} + // increase the focus indicator width + .block-editor-block-parent-selector__button::before { + left: 7px; + right: 7px; + } +}