From bfb4c6e103ee35618381045db86def2f6d45dd66 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Fri, 10 Nov 2023 12:51:13 -0600 Subject: [PATCH] Fix custom button background color --- src/components/IconButton.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/IconButton.tsx b/src/components/IconButton.tsx index 4424e751..0989073d 100644 --- a/src/components/IconButton.tsx +++ b/src/components/IconButton.tsx @@ -30,7 +30,7 @@ export default function IconButton({ className={cc( 'inline-flex items-center justify-center', 'p-0 border-none shadow-none', - 'active:bg-transparent bg-transparent', + 'active:bg-transparent bg-transparent dark:bg-transparent', 'translate-x-[-1px]', onClick !== undefined && 'cursor-pointer', 'active:opacity-50',