Skip to content

Commit 1b1486a

Browse files
authored
fix color of icon in footer when in light mode (#552)
1 parent f4e127f commit 1b1486a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

apps/web/src/components/footer.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,13 @@ export function Footer() {
3636
{/* Brand Section */}
3737
<div className="md:col-span-1 max-w-sm">
3838
<div className="flex justify-start items-center gap-2 mb-4">
39-
<Image src="/logo.svg" alt="OpenCut" width={24} height={24} />
39+
<Image
40+
src="/logo.svg"
41+
alt="OpenCut"
42+
width={24}
43+
height={24}
44+
className="invert dark:invert-0"
45+
/>
4046
<span className="font-bold text-lg">OpenCut</span>
4147
</div>
4248
<p className="text-sm md:text-left text-muted-foreground mb-5">

0 commit comments

Comments
 (0)