We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5674f62 commit da84b9fCopy full SHA for da84b9f
components/CopyAddress.tsx
@@ -4,7 +4,7 @@ import CopyIcon from "./icons/CopyIcon";
4
const CopyAddress = ({ address, url }: { address: string; url?: string }) => {
5
return (
6
<div
7
- className="-ml-1 inline-flex cursor-pointer items-center px-1 font-mono hover:bg-dark hover:text-white active:bg-darkGray3"
+ 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"
8
onClick={() => {
9
copy(address);
10
}}
0 commit comments