From 60796dc747b80b27e8636798e2bddb819bd4b23b Mon Sep 17 00:00:00 2001 From: lucaronin Date: Mon, 30 Mar 2026 07:48:48 +0200 Subject: [PATCH] fix: resize handle fills full panel height via self-stretch The ResizeHandle div was not stretching to the full height of its flex row parent, making it only interactive in the top portion. Adding self-stretch (align-self: stretch) ensures it fills the complete cross-axis height of the container, so the user can drag at any vertical position. Fixes: Properties panel resize handle active area. --- src/components/ResizeHandle.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ResizeHandle.tsx b/src/components/ResizeHandle.tsx index 8bb29a06..6d23ea02 100644 --- a/src/components/ResizeHandle.tsx +++ b/src/components/ResizeHandle.tsx @@ -67,7 +67,7 @@ export function ResizeHandle({ onResize }: ResizeHandleProps) { return (
)