aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2024-09-17 20:41:38 -0700
committerGitHub <[email protected]>2024-09-17 20:41:38 -0700
commit735dfe99b935346d3ba20db5b245e761335bdb7a (patch)
tree93e184d64b6fe8e5f86c6af9c2f377c3c14e82d4
parentMerge pull request #289 from supermemoryai/extension/drag-and-dismiss (diff)
parentfix: extension icon scroll effect with page (diff)
downloadsupermemory-735dfe99b935346d3ba20db5b245e761335bdb7a.tar.xz
supermemory-735dfe99b935346d3ba20db5b245e761335bdb7a.zip
Merge pull request #292 from supermemoryai/extension/drag-and-dismiss
fix: Extension UI fix and Scroll issue with the page scroll
-rw-r--r--apps/extension/content/ContentApp.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/extension/content/ContentApp.tsx b/apps/extension/content/ContentApp.tsx
index 0002fa6d..9d56b420 100644
--- a/apps/extension/content/ContentApp.tsx
+++ b/apps/extension/content/ContentApp.tsx
@@ -350,7 +350,7 @@ export default function ContentApp({
};
return (
- <div className="flex justify-end items-end min-h-screen h-full w-full">
+ <div className="flex justify-end items-end h-full w-full">
<Toaster />
<Popover
@@ -363,7 +363,7 @@ export default function ContentApp({
onClick={async () => await getSpaces()}
asChild
style={{
- position: "absolute",
+ position: "fixed",
right: "10px",
bottom: `${position.y}px`,
}}