mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-10 22:41:17 +00:00
fix: lift graph controls above chat bar on compact viewports
This commit is contained in:
parent
4ddbd78519
commit
be6df8faa6
2 changed files with 2 additions and 2 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue