feat: updating some things
All checks were successful
Deploy to GitHub Pages / build_site (push) Successful in 10m47s

This commit is contained in:
Max Richter
2026-01-18 15:39:10 +01:00
parent cb89b16dd8
commit aea2cbceba
4 changed files with 28 additions and 7 deletions

View File

@@ -177,11 +177,9 @@
<EdgeEl z={graphState.cameraPosition[2]} {x1} {y1} {x2} {y2} />
{/each}
<HTML transform={false}>
<HTML>
<div
role="tree"
id="graph"
tabindex="0"
class="wrapper"
style:transform={`scale(${graphState.cameraPosition[2] * 0.1})`}
class:hovering-sockets={graphState.activeSocket}

View File

@@ -2,7 +2,7 @@
import NestedSettings from "./NestedSettings.svelte";
import { localState } from "$lib/helpers/localState.svelte";
import type { NodeInput } from "@nodarium/types";
import Input from "@nodarium/ui";
import { Input } from "@nodarium/ui";
type Button = { type: "button"; callback: () => void; label?: string };