We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f01558 commit bd3fb78Copy full SHA for bd3fb78
1 file changed
src/ext/extension-page/App.svelte
@@ -105,14 +105,14 @@
105
>
106
{#if !sidebarHidden}
107
<Sidebar {sidebarSwitch} />
108
+ <div
109
+ role="none"
110
+ class="splitter"
111
+ class:dragging={splitterActive}
112
+ on:mousedown={handleSplitterDrag}
113
+ on:mouseup={handleSplitterDrag}
114
+ ></div>
115
{/if}
- <div
- role="none"
- class="splitter"
- class:dragging={splitterActive}
- on:mousedown={handleSplitterDrag}
- on:mouseup={handleSplitterDrag}
- ></div>
116
<Editor {sidebarHidden} {sidebarSwitch} />
117
</main>
118
{#if splitterActive}
0 commit comments