fix: use 768px breakpoint for chat bar clearance to match isMobile

This commit is contained in:
Vorflux AI 2026-05-22 14:40:20 +00:00
parent be6df8faa6
commit 97cf5f57f9

View file

@ -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",