fix(canvas): make graph canvas block-level to eliminate baseline gap

- Change <canvas id=graph-canvas> to display:block via Tailwind class
- Removes 1–5 px baseline offset between canvas and container
- Aligns canvas and TransformPane origins; fixes link/slot endpoint drift

No behavioral changes beyond layout origin alignment; no dependent CSS relies on inline/baseline.
This commit is contained in:
Benjamin Lu
2025-09-10 21:35:10 -07:00
parent ca220440b2
commit 99c2763f78

View File

@@ -28,7 +28,7 @@
id="graph-canvas"
ref="canvasRef"
tabindex="1"
class="w-full h-full touch-none"
class="block w-full h-full touch-none"
/>
<!-- TransformPane for Vue node rendering -->