Skip to content

Commit

Permalink
fix: nft style tweaks (#1552)
Browse files Browse the repository at this point in the history
  • Loading branch information
alessey authored Nov 1, 2024
1 parent d4724e9 commit b612ab9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/nft/components/mint/NFTMintButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export function NFTMintButton({

if (!address) {
return (
<div className={cn('pt-2', className)}>
<div className={cn('py-2', className)}>
<ConnectWallet className="w-full" />
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion src/nft/components/view/NFTOwner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function NFTOwner({ className, label = 'Owned by' }: NFTOwnerReact) {
>
<div className={cn(color.foregroundMuted)}>{label}</div>
<Identity
className={cn('!bg-inherit space-x-1 px-0')}
className={cn('!bg-inherit space-x-1 px-0 [&>div]:space-x-2')}
address={ownerAddress}
schemaId={schemaId}
>
Expand Down

0 comments on commit b612ab9

Please sign in to comment.