fix: keep context panel resize handle above content

Prevents changed file rows from visually overlapping the resize border
Preserves existing spacing in the changes list
This commit is contained in:
Bohdan Triapitsyn
2026-06-15 15:29:19 +03:00
parent ba0a755040
commit 7a0abfe6c4
@@ -2422,7 +2422,7 @@ export const ContextPanel: React.FC = () => {
{!isExpanded && (
<div
className={cn(
'absolute left-0 top-0 z-20 h-full w-[3px] cursor-col-resize transition-colors hover:bg-[var(--interactive-border)]/80',
'absolute left-0 top-0 z-50 h-full w-[3px] cursor-col-resize transition-colors hover:bg-[var(--interactive-border)]/80',
isResizing && 'bg-[var(--interactive-border)]'
)}
onPointerDown={handleResizeStart}