From 4b0d6532bfcfdcc33cb12c439a8b07fb5f18d5ad Mon Sep 17 00:00:00 2001 From: Kiran Ashok Date: Fri, 14 Oct 2022 13:10:07 +0530 Subject: [PATCH] fix:: resizer not visible in preview mode (#4427) --- frontend/src/_styles/theme.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/_styles/theme.scss b/frontend/src/_styles/theme.scss index 8c6ab18bd9..411910cbf9 100644 --- a/frontend/src/_styles/theme.scss +++ b/frontend/src/_styles/theme.scss @@ -2112,6 +2112,7 @@ tr:focus { transform: translateX(50%); z-index: 1; touch-action: none; + width: 2px; &.isResizing { background: rgb(179, 173, 173); @@ -4028,6 +4029,7 @@ input[type="text"] { .resize-handle { cursor: move; + width: 5px; } } }