1
0
Fork 0
mirror of synced 2024-07-14 02:36:22 +12:00
This commit is contained in:
Gerard Burns 2023-11-28 11:14:56 +00:00
parent 868253b74f
commit 6428a63c4f
4 changed files with 8 additions and 4 deletions

View file

@ -78,7 +78,11 @@
{style}
{draggable}
>
<div class="nav-item-content" bind:this={contentRef} class:right={rightAlignIcon}>
<div
class="nav-item-content"
bind:this={contentRef}
class:right={rightAlignIcon}
>
{#if withArrow}
<div
class:opened

View file

@ -1,7 +1,7 @@
<script>
import ScreenList from "./ScreenList/index.svelte"
import ComponentList from "./ComponentList/index.svelte"
import { getHorizontalResizeActions } from "./ScreenList/resizable"
import { getHorizontalResizeActions } from "components/common/resizable"
const [resizable, resizableHandle] = getHorizontalResizeActions()
</script>
@ -48,7 +48,7 @@
.dividerClickExtender {
position: absolute;
cursor: row-resize;
cursor: col-resize;
height: 100%;
width: 12px;
}

View file

@ -5,7 +5,7 @@
import RoleIndicator from "./RoleIndicator.svelte"
import DropdownMenu from "./DropdownMenu.svelte"
import { goto } from "@roxi/routify"
import { getVerticalResizeActions } from "./resizable"
import { getVerticalResizeActions } from "components/common/resizable"
import NavHeader from "components/common/NavHeader.svelte"
const [resizable, resizableHandle] = getVerticalResizeActions()