diff options
| author | Adam Malczewski <[email protected]> | 2026-06-27 16:26:28 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-06-27 16:26:28 +0900 |
| commit | d3c1f96cbcaea4cadb2432a93e7ba305e938735e (patch) | |
| tree | 7ed70ca97fbfe7a6c9d1e2b8f8dc751861fa944d /src | |
| parent | 6b240305f1f04874a83d6b2005db0d63c2ef237b (diff) | |
| download | dispatch-web-d3c1f96cbcaea4cadb2432a93e7ba305e938735e.tar.gz dispatch-web-d3c1f96cbcaea4cadb2432a93e7ba305e938735e.zip | |
feat(sidebar-tabs): remove sidebar left border
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 290f27b..31d0155 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 border-l border-base-300 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 p-3 transition-transform duration-300 ease-out" style="transform: translateX({sidebarOpen ? '0' : '100%'})" > <ViewSidebar kinds={viewKinds} initial={sidebarPanels} onChange={handleSidebarChange} content={viewContent} /> |
