Skip to content

Commit e8ec1bd

Browse files
fix(explore): move list panel to left side in hybrid layout
1 parent 5a50181 commit e8ec1bd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

components/explorer/ExplorerShell.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ function ExplorerLayout({ mapboxAccessToken }: ExplorerLayoutProps) {
4545
minAsideWidth={420}
4646
minMainWidth={400}
4747
>
48-
<SplitPane.Main>
49-
<ExplorerMap mapboxAccessToken={mapboxAccessToken} />
50-
</SplitPane.Main>
5148
<SplitPane.Aside>
52-
<div className="h-full border-l border-border-default bg-background-surface">
49+
<div className="h-full border-r border-border-default bg-background-surface">
5350
<ExplorerPanel />
5451
</div>
5552
</SplitPane.Aside>
53+
<SplitPane.Main>
54+
<ExplorerMap mapboxAccessToken={mapboxAccessToken} />
55+
</SplitPane.Main>
5656
</SplitPane>
5757
)}
5858
{layout === "list" && (

tsconfig.tsbuildinfo

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)