From 79cb0d38609f1aa521cb30c385dbecbfb1750ee4 Mon Sep 17 00:00:00 2001 From: Aaryan Khandelwal Date: Thu, 22 Jan 2026 17:07:51 +0530 Subject: [PATCH] fix: col drag handle orientation --- packages/editor/src/styles/table.css | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/packages/editor/src/styles/table.css b/packages/editor/src/styles/table.css index 72f8a2593d..5b30babdeb 100644 --- a/packages/editor/src/styles/table.css +++ b/packages/editor/src/styles/table.css @@ -57,7 +57,7 @@ .table-col-handle-container, .table-row-handle-container { & > button { - @apply py-1 opacity-0 rounded-sm outline-none; + @apply opacity-0 rounded-sm outline-none; &.default-state { @apply bg-layer-1 hover:bg-layer-1-hover border border-strong-1; @@ -69,6 +69,22 @@ } } + .table-col-handle-container { + & > button { + @apply px-1; + + svg { + @apply rotate-90; + } + } + } + + .table-row-handle-container { + & > button { + @apply py-1; + } + } + &:hover { .table-col-handle-container, .table-row-handle-container {