Skip to content

Commit 8e6d9cd

Browse files
committed
fix: reduce the z-index of splitter
1 parent ddae9d4 commit 8e6d9cd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/ext/extension-page/App.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@
168168
cursor: col-resize;
169169
position: fixed;
170170
inset: 0;
171-
z-index: 200;
171+
z-index: 20;
172172
}
173173
174174
.splitter {
@@ -182,7 +182,7 @@
182182
left: calc(var(--sidebar-fixed-width) - var(--splitter-offset));
183183
width: var(--splitter-width);
184184
height: 100svh;
185-
z-index: 201;
185+
z-index: 21;
186186
transition: background-color 0.2s ease-in-out;
187187
188188
&:hover,

src/ext/extension-page/Components/Sidebar/Sidebar.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@
228228
title="Open settings"
229229
{disabled}
230230
/>
231-
<Dropdown icon={iconPlus} title="New item" {disabled} right>
231+
<Dropdown icon={iconPlus} title="New item" {disabled}>
232232
<button on:click={() => newItem("js")}>New JS</button>
233233
<button on:click={() => newItem("css")}>New CSS</button>
234234
<button on:click={newRemote}>New Remote</button>

0 commit comments

Comments
 (0)