Skip to content

Commit 3d199a8

Browse files
committed
feat: improve explorer resize handle with enhanced touch target and visual indicator
1 parent f5dbecc commit 3d199a8

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

src/App.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -669,12 +669,14 @@ function AppContent() {
669669
running={running}
670670
/>
671671
</div>
672-
{/* Explorer resize handle */}
672+
{/* Explorer resize handle — wide touch target, pill indicator */}
673673
<div
674674
onMouseDown={handleExplorerDragStart}
675675
onTouchStart={handleExplorerDragStart}
676-
className="w-[3px] shrink-0 cursor-col-resize bg-zinc-700/50 hover:bg-emerald-400 transition-colors"
677-
/>
676+
className="w-3 shrink-0 cursor-col-resize flex items-center justify-center group touch-none border-r border-zinc-700/50"
677+
>
678+
<div className="h-10 w-[2px] bg-zinc-600 group-hover:bg-emerald-400 rounded-full transition-colors" />
679+
</div>
678680
</>
679681
)}
680682

0 commit comments

Comments
 (0)