Skip to content

Commit

Permalink
fix copy icon alignment on mobile device
Browse files Browse the repository at this point in the history
  • Loading branch information
technophile-04 committed Aug 23, 2023
1 parent b8a92bb commit e36968d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export const RainbowKitCustomConnectButton = () => {
{addressCopied ? (
<div className="btn-sm !rounded-xl flex gap-3 py-3">
<CheckCircleIcon
className=" text-xl font-normal h-6 w-4 cursor-pointer"
className="text-xl font-normal h-6 w-4 cursor-pointer ml-2 sm:ml-0"
aria-hidden="true"
/>
<span className=" whitespace-nowrap">Copy address</span>
Expand All @@ -125,7 +125,7 @@ export const RainbowKitCustomConnectButton = () => {
>
<div className="btn-sm !rounded-xl flex gap-3 py-3">
<DocumentDuplicateIcon
className=" text-xl font-normal h-6 w-4 cursor-pointer"
className="text-xl font-normal h-6 w-4 cursor-pointer ml-2 sm:ml-0"
aria-hidden="true"
/>
<span className=" whitespace-nowrap">Copy address</span>
Expand Down

0 comments on commit e36968d

Please sign in to comment.