Skip to content

Commit da84b9f

Browse files
authored
fix: hover not showing the right theme when on light mode (#359)
* fix: hover not showing the right theme when on light mode * address comments * address comments
1 parent 5674f62 commit da84b9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/CopyAddress.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import CopyIcon from "./icons/CopyIcon";
44
const CopyAddress = ({ address, url }: { address: string; url?: string }) => {
55
return (
66
<div
7-
className="-ml-1 inline-flex cursor-pointer items-center px-1 font-mono hover:bg-dark hover:text-white active:bg-darkGray3"
7+
className="-ml-1 inline-flex cursor-pointer items-center px-1 font-mono hover:bg-light hover:text-dark dark:hover:bg-dark dark:hover:text-light"
88
onClick={() => {
99
copy(address);
1010
}}

0 commit comments

Comments
 (0)