tui: add overlay sidebar for narrow screens to improve mobile experience (#7288)

This commit is contained in:
Dax
2026-01-07 23:51:49 -05:00
committed by GitHub
parent b3a2f9fb4e
commit ca7a70b628
3 changed files with 20 additions and 20 deletions

View File

@@ -1053,7 +1053,24 @@ export function Session() {
<Toast />
</box>
<Show when={sidebarVisible()}>
<Sidebar sessionID={route.sessionID} />
<Switch>
<Match when={wide()}>
<Sidebar sessionID={route.sessionID} />
</Match>
<Match when={!wide()}>
<box
position="absolute"
top={0}
left={0}
right={0}
bottom={0}
alignItems="flex-end"
backgroundColor={RGBA.fromInts(0, 0, 0, 70)}
>
<Sidebar sessionID={route.sessionID} />
</box>
</Match>
</Switch>
</Show>
</box>
</context.Provider>