diff options
| author | Dhravya Shah <[email protected]> | 2024-08-02 12:05:29 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2024-08-02 12:05:29 -0700 |
| commit | 016f2f56cc3d34747164634e449f40c9be408f3c (patch) | |
| tree | dfa0c97c034eb5f4b7c8c793e2d353b799e1ba08 /apps | |
| parent | Merge branch 'main' of github.com:supermemoryai/supermemory (diff) | |
| download | supermemory-016f2f56cc3d34747164634e449f40c9be408f3c.tar.xz supermemory-016f2f56cc3d34747164634e449f40c9be408f3c.zip | |
fix: Small UI issue
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/web/app/(dash)/home/page.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/(dash)/home/page.tsx b/apps/web/app/(dash)/home/page.tsx index 0545d1ff..18bd934d 100644 --- a/apps/web/app/(dash)/home/page.tsx +++ b/apps/web/app/(dash)/home/page.tsx @@ -78,7 +78,7 @@ function Page({ searchParams }: { searchParams: Record<string, string> }) { }} > <motion.h1 - className="text-center mx-auto bg-[linear-gradient(180deg,_#FFF_0%,_rgba(255,_255,_255,_0.00)_202.08%)] bg-clip-text text-4xl tracking-tighter text-transparent md:text-5xl" + className="text-center mx-auto bg-[linear-gradient(180deg,_#FFF_0%,_rgba(255,_255,_255,_0.00)_202.08%)] bg-clip-text text-4xl tracking-tighter text-transparent md:text-5xl pb-1" animate={{ opacity: query.length ? 0 : 1, translateY: query.length ? "10px" : "0px", |