make file icon in attachment modal fit light theme better

make the file icon in the attachment modal black on an off-white background so that it matches the light theme better and looks stylistically equivalent to its look in dark mode
This commit is contained in:
skoved
2025-08-26 21:53:51 -04:00
parent ff1ca56157
commit a546eb18a1

View File

@@ -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"
>
<div className="bg-dark-100 flex items-center justify-center w-10 h-10 rounded-md">
<File size={16} className="text-white/70" />
<div className="bg-light-100 dark:bg-dark-100 flex items-center justify-center w-10 h-10 rounded-md">
<File size={16} className="text-black/70 dark:text-white/70" />
</div>
<p className="text-black/70 dark:text-white/70 text-sm">
{file.fileName.length > 25