diff options
| author | Adam Malczewski <[email protected]> | 2026-06-27 16:29:48 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-06-27 16:29:48 +0900 |
| commit | 814544e1924e736c924de6d4d5b3c404ca036999 (patch) | |
| tree | f6c697964bcb0c6b406ef939eea9bc3821d42ec3 /src | |
| parent | d3c1f96cbcaea4cadb2432a93e7ba305e938735e (diff) | |
| download | dispatch-web-814544e1924e736c924de6d4d5b3c404ca036999.tar.gz dispatch-web-814544e1924e736c924de6d4d5b3c404ca036999.zip | |
fix(sidebar-tabs): drop sidebar left padding so it shares the chat gutter
Diffstat (limited to 'src')
| -rw-r--r-- | src/app/App.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/App.svelte b/src/app/App.svelte index 31d0155..9926824 100644 --- a/src/app/App.svelte +++ b/src/app/App.svelte @@ -557,7 +557,7 @@ class:w-0={!sidebarOpen} > <div - class="flex h-full w-80 flex-col gap-2 overflow-y-auto bg-base-100 p-3 transition-transform duration-300 ease-out" + class="flex h-full w-80 flex-col gap-2 overflow-y-auto bg-base-100 pt-3 pr-3 pb-3 transition-transform duration-300 ease-out" style="transform: translateX({sidebarOpen ? '0' : '100%'})" > <ViewSidebar kinds={viewKinds} initial={sidebarPanels} onChange={handleSidebarChange} content={viewContent} /> |
