diff options
| author | Adam Malczewski <[email protected]> | 2026-05-20 15:43:07 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-05-20 15:43:07 +0900 |
| commit | 971a8f775d5e89e484e56a575e8ae2706fe2b53f (patch) | |
| tree | d11f6cbbf230d73e53dee0db09e535dea9717599 /packages | |
| parent | adc8bd185b54935e7a31aae04da3175b7989927a (diff) | |
| download | dispatch-971a8f775d5e89e484e56a575e8ae2706fe2b53f.tar.gz dispatch-971a8f775d5e89e484e56a575e8ae2706fe2b53f.zip | |
fix: sidebar layout, copilot auth script, config setup
- Sidebar uses absolute inset-0 with overflow-y-auto for proper scrolling
- Border moved to inner div so it hides with sidebar
- Copilot auth script uses portable sed instead of grep -P (macOS compat)
- dispatch.toml with 3 keys, 4 models, fallback order
- .env.dispatch with key placeholders and script reference
- docker-compose loads .env.dispatch via env_file
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/frontend/src/App.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/App.svelte b/packages/frontend/src/App.svelte index 02a80ba..43fcc5d 100644 --- a/packages/frontend/src/App.svelte +++ b/packages/frontend/src/App.svelte @@ -92,12 +92,12 @@ onMount(() => { <!-- Right sidebar — slides in/out while chat smoothly resizes --> <div - class="shrink-0 overflow-hidden border-l border-base-300 transition-[width] duration-300 ease-out" + class="shrink-0 overflow-x-hidden transition-[width] duration-300 ease-out relative" class:w-80={sidebarOpen} class:w-0={!sidebarOpen} > <div - class="w-80 overflow-y-auto bg-base-100 px-2 py-2 flex flex-col gap-2 h-full transition-transform duration-300 ease-out" + class="w-80 absolute inset-0 overflow-y-auto bg-base-100 border-l border-base-300 px-2 py-2 flex flex-col gap-2 transition-transform duration-300 ease-out" style="transform: translateX({sidebarOpen ? '0' : '100%'})" > <div class="collapse collapse-arrow bg-base-200"> |
