Skip to content

Commit 889bda3

Browse files
AmazingAngclaude
andcommitted
Remove bottom panel collapse button, simplify horizontal resize handle
Match the horizontal resize handle style with the vertical one — just a bare ResizeHandle without the wrapper div and collapse button. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 9946f01 commit 889bda3

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

src/app/page.tsx

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1591,17 +1591,7 @@ export default function Home() {
15911591
{/* Horizontal resize handle + bottom panels (hidden in map fullscreen) */}
15921592
{!isFullscreen && (
15931593
<>
1594-
<div className="flex items-center">
1595-
<ResizeHandle direction="horizontal" onResize={handleHorizontalResize} />
1596-
<button
1597-
onClick={() => useUIStore.getState().toggleBottomPanel()}
1598-
className="shrink-0 px-1.5 py-0 text-[9px] text-[var(--text-ghost)] hover:text-[var(--text-muted)] transition-colors z-20"
1599-
title={bottomPanelCollapsed ? t("common.expandBottomPanel") : t("common.collapseBottomPanel")}
1600-
style={{ marginLeft: -4 }}
1601-
>
1602-
{bottomPanelCollapsed ? "\u25B2" : "\u25BC"}
1603-
</button>
1604-
</div>
1594+
<ResizeHandle direction="horizontal" onResize={handleHorizontalResize} />
16051595
{!bottomPanelCollapsed && (
16061596
<div
16071597
className={`bottom-panels-grid${renderBottomVisiblePanels.length === 0 ? " bottom-panels-grid-empty" : ""}`}

0 commit comments

Comments
 (0)