Skip to content

Commit fdc275b

Browse files
change 8px -> 4px floating menu gaps
1 parent 89ff825 commit fdc275b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/components/LiteGraphCanvasSplitterOverlay.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<slot name="topmenu" :sidebar-panel-visible="sidebarPanelVisible" />
4343

4444
<Splitter
45-
class="splitter-overlay splitter-overlay-bottom mr-2 mb-2 ml-2 flex-1"
45+
class="splitter-overlay splitter-overlay-bottom mr-1 mb-1 ml-1 flex-1"
4646
layout="vertical"
4747
:pt:gutter="
4848
'rounded-tl-lg rounded-tr-lg ' +

src/components/TopMenuSection.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<template>
2-
<div v-if="!workspaceStore.focusMode" class="ml-2 flex pt-2">
2+
<div v-if="!workspaceStore.focusMode" class="ml-2 flex pt-1">
33
<div class="min-w-0 flex-1">
44
<SubgraphBreadcrumb />
55
</div>
66

77
<div
8-
class="actionbar-container pointer-events-auto mx-2 flex h-12 items-center rounded-lg px-2 shadow-md"
8+
class="actionbar-container pointer-events-auto mx-1 flex h-12 items-center rounded-lg px-2 shadow-md"
99
>
1010
<!-- Support for legacy topbar elements attached by custom scripts, hidden if no elements present -->
1111
<div

src/components/graph/modals/ZoomControlsModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<div
33
v-if="visible"
4-
class="absolute right-2 bottom-[66px] z-1300 flex w-[250px] justify-center border-0! bg-inherit!"
4+
class="absolute right-0 bottom-[62px] z-1300 flex w-[250px] justify-center border-0! bg-inherit!"
55
>
66
<div
77
class="w-4/5 rounded-lg border border-node-border bg-interface-panel-surface p-2 text-text-primary shadow-lg select-none"

src/components/sidebar/SideToolbar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ onMounted(() => {
180180
* but need to reference sidebar dimensions for proper positioning.
181181
*/
182182
:root {
183-
--sidebar-padding: 8px;
183+
--sidebar-padding: 4px;
184184
--sidebar-icon-size: 1rem;
185185
186186
--sidebar-default-floating-width: 56px;

src/renderer/extensions/minimap/MiniMap.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div
33
v-if="visible && initialized"
44
ref="minimapRef"
5-
class="minimap-main-container absolute right-0 bottom-[58px] z-1000 flex"
5+
class="minimap-main-container absolute right-0 bottom-[54px] z-1000 flex"
66
>
77
<MiniMapPanel
88
v-if="showOptionsPanel"

0 commit comments

Comments
 (0)