diff --git a/src/app/discover/page.tsx b/src/app/discover/page.tsx index 8e20e50..a9d0090 100644 --- a/src/app/discover/page.tsx +++ b/src/app/discover/page.tsx @@ -91,7 +91,7 @@ const Page = () => { 'border-[0.1px] rounded-full text-sm px-3 py-1 text-nowrap transition duration-200 cursor-pointer', activeTopic === t.key ? 'text-cyan-300 bg-cyan-300/30 border-cyan-300/60' - : 'border-white/30 text-white/70 hover:text-white hover:border-white/40 hover:bg-white/5', + : 'border-black/30 dark:border-white/30 text-black/70 dark:text-white/70 hover:text-black dark:hover:text-white hover:border-black/40 dark:hover:border-white/40 hover:bg-black/5 dark:hover:bg-white/5', )} onClick={() => setActiveTopic(t.key)} > diff --git a/src/components/MessageInputActions/Attach.tsx b/src/components/MessageInputActions/Attach.tsx index eb25a89..42722a2 100644 --- a/src/components/MessageInputActions/Attach.tsx +++ b/src/components/MessageInputActions/Attach.tsx @@ -132,8 +132,8 @@ const Attach = ({ showText }: { showText?: boolean }) => { key={i} className="flex flex-row items-center justify-start w-full space-x-3 p-3" > -
- +
+

{file.fileName.length > 25