mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-10 22:41:17 +00:00
fix: use 768px breakpoint for chat bar clearance to match isMobile
This commit is contained in:
parent
be6df8faa6
commit
97cf5f57f9
1 changed files with 1 additions and 1 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue