From 01bd1bde64f887d87dc236b9fbe98d7e47eeb08d Mon Sep 17 00:00:00 2001 From: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Date: Thu, 30 Jan 2025 19:27:12 +0530 Subject: [PATCH] fix: table resize overflow issues (#6520) --- packages/editor/src/styles/editor.css | 2 +- packages/editor/src/styles/table.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/editor/src/styles/editor.css b/packages/editor/src/styles/editor.css index b7742f5389..b464b1b80d 100644 --- a/packages/editor/src/styles/editor.css +++ b/packages/editor/src/styles/editor.css @@ -412,7 +412,7 @@ p.editor-paragraph-block { padding-bottom: 4px; } - &:not(:last-child) { + &:not(td p.editor-paragraph-block):not(:last-child) { padding-bottom: 8px; } diff --git a/packages/editor/src/styles/table.css b/packages/editor/src/styles/table.css index 8f40ab9d87..b4a1ab8207 100644 --- a/packages/editor/src/styles/table.css +++ b/packages/editor/src/styles/table.css @@ -48,7 +48,7 @@ /* table dropdown */ .table-wrapper table .column-resize-handle { position: absolute; - right: -2px; + right: 0; top: 0; width: 2px; height: 100%;