fix: lift graph controls above chat bar on compact viewports

This commit is contained in:
Vorflux AI 2026-05-22 14:38:57 +00:00
parent 4ddbd78519
commit be6df8faa6
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@supermemory/memory-graph",
"version": "0.2.2",
"version": "0.2.3",
"description": "Interactive graph visualization component for Supermemory - visualize and explore your memory connections",
"type": "module",
"main": "./src/index.tsx",

View file

@ -644,7 +644,7 @@ export function MemoryGraph({
const bottomLeftStackStyle: React.CSSProperties = {
position: "absolute",
bottom: 16,
bottom: isCompactViewport ? 132 : 16,
left: 16,
zIndex: 20,
display: "flex",