diff --git a/src-web/components/ResizeHandle.tsx b/src-web/components/ResizeHandle.tsx index 8910aef2..727fa8f6 100644 --- a/src-web/components/ResizeHandle.tsx +++ b/src-web/components/ResizeHandle.tsx @@ -30,8 +30,8 @@ export function ResizeHandle({ style={style} className={classnames( className, - 'group z-10 flex cursor-ew-resize', - vertical ? 'w-full h-3 cursor-ns-resize' : 'h-full w-3 cursor-ew-resize', + 'group z-10 flex', + vertical ? 'w-full h-3 cursor-row-resize' : 'h-full w-3 cursor-col-resize', justify === 'center' && 'justify-center', justify === 'end' && 'justify-end', justify === 'start' && 'justify-start', @@ -46,9 +46,9 @@ export function ResizeHandle({ {isResizing && (
)}