diff options
| author | Mahesh Sanikommmu <[email protected]> | 2025-09-03 19:00:57 -0700 |
|---|---|---|
| committer | Mahesh Sanikommmu <[email protected]> | 2025-09-03 19:00:57 -0700 |
| commit | 497986524bf059b975dd38ee012ceb7b5b68f88b (patch) | |
| tree | 54f2df594cae016a6c57d04cac43b14ab1f851c6 /apps/web/components/memory-list-view.tsx | |
| parent | updated the text input (diff) | |
| download | supermemory-mahesh/app-layout.tar.xz supermemory-mahesh/app-layout.zip | |
few more changesmahesh/app-layout
Diffstat (limited to 'apps/web/components/memory-list-view.tsx')
| -rw-r--r-- | apps/web/components/memory-list-view.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/components/memory-list-view.tsx b/apps/web/components/memory-list-view.tsx index d137e134..8755c33e 100644 --- a/apps/web/components/memory-list-view.tsx +++ b/apps/web/components/memory-list-view.tsx @@ -52,7 +52,7 @@ const DocumentCard = memo( return ( <Card - className="h-full mx-4 p-4 transition-all cursor-pointer group relative overflow-hidden bg-card gap-2 md:w-full" + className="h-full mx-4 p-4 transition-all cursor-pointer group relative overflow-hidden bg-card shadow-lg gap-2 md:w-full hover:shadow-xl" onClick={() => { analytics.documentCardClicked(); onOpenDetails(document); @@ -61,7 +61,7 @@ const DocumentCard = memo( <CardHeader className="relative z-10 px-0"> <div className="flex items-center justify-between gap-2"> <div className="flex items-center gap-1"> - {getDocumentIcon(document.type, "w-4 h-4 flex-shrink-0")} + {/*{getDocumentIcon(document.type, "w-4 h-4 flex-shrink-0")}*/} <p className={cn( "text-sm font-medium line-clamp-1", |