From dee982574c218f887d0f5ad9ca8d1fa7abe5d117 Mon Sep 17 00:00:00 2001 From: willkhinz Date: Wed, 25 Mar 2026 17:31:46 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20resolve=20[bug]=20[alpha]=20editor=20act?= =?UTF-8?q?ions=20toolbar=20`.editor-actions`=20uses=20`padding:=200=208px?= =?UTF-8?q?=200=204px`=20=E2=80=94=20asymmetric=20horizontal=20(4px=20left?= =?UTF-8?q?=20vs=208px=20right)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: willkhinz --- FIX_PROPOSAL.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 FIX_PROPOSAL.md diff --git a/FIX_PROPOSAL.md b/FIX_PROPOSAL.md new file mode 100644 index 0000000..2f0e026 --- /dev/null +++ b/FIX_PROPOSAL.md @@ -0,0 +1,25 @@ +To fix the issue of asymmetric horizontal padding in the `.editor-actions` class, you can modify the `padding` property to have equal left and right values. Here is the exact code fix: + +```css +.editor-actions { + cursor: default; + flex: initial; + padding: 0 8px 0 8px; /* Changed padding-left to 8px to match padding-right */ + height: var(--editor-group-tab-height); + display: flex; + align-items: center; +} +``` + +Alternatively, you can use a symmetric shorthand padding syntax: + +```css +.editor-actions { + cursor: default; + flex: initial; + padding: 0 8px; /* Sets padding-top and padding-bottom to 0, padding-left and padding-right to 8px */ + height: var(--editor-group-tab-height); + display: flex; + align-items: center; +} +``` \ No newline at end of file