summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorAdam Malczewski <[email protected]>2026-06-27 16:26:28 +0900
committerAdam Malczewski <[email protected]>2026-06-27 16:26:28 +0900
commitd3c1f96cbcaea4cadb2432a93e7ba305e938735e (patch)
tree7ed70ca97fbfe7a6c9d1e2b8f8dc751861fa944d /src
parent6b240305f1f04874a83d6b2005db0d63c2ef237b (diff)
downloaddispatch-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.svelte2
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} />