diff --git a/packages/memory-graph/src/components/memory-graph.tsx b/packages/memory-graph/src/components/memory-graph.tsx index 8a837334..6d0d112b 100644 --- a/packages/memory-graph/src/components/memory-graph.tsx +++ b/packages/memory-graph/src/components/memory-graph.tsx @@ -644,7 +644,7 @@ export function MemoryGraph({ const bottomLeftStackStyle: React.CSSProperties = { position: "absolute", - bottom: isCompactViewport ? 132 : 16, + bottom: containerSize.width > 0 && containerSize.width < 768 ? 132 : 16, left: 16, zIndex: 20, display: "flex",