Skip to content

Commit

Permalink
changed font size for default cards on wallet page
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlee348 committed Nov 28, 2024
1 parent ac63094 commit 5e39ad2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/wallet/DappList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export default function DappList() {
</Text>
</Box>
) : (
<Text alignSelf="center" textAlign="center" variant="large" color="text50" padding="4">
<Text textAlign="center" variant="medium" color="text50" padding="4">
Connect a Dapp with WalletConnect to sign actions
</Text>
)}
Expand Down
2 changes: 1 addition & 1 deletion src/components/wallet/ExternalWallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default function ExternalWallet() {
<ButtonWithIcon icon={<CloseIcon color="text100" />} onClick={() => handleDisconnect()} />
</Box>
) : (
<Text alignSelf="center" textAlign="center" variant="large" color="text50" padding="4">
<Text textAlign="center" variant="medium" color="text50" padding="4">
Connect an external wallet to relay transactions
</Text>
)}
Expand Down
2 changes: 1 addition & 1 deletion src/components/wallet/collectibles/CollectibleList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default function CollectibleList({
</>
) : (
<Card flexDirection="column">
<Text alignSelf="center" variant="large" color="text50" padding="4">
<Text textAlign="center" variant="medium" color="text50" padding="4">
Import ERC721 or ERC1155 Collectibles
</Text>
</Card>
Expand Down
2 changes: 1 addition & 1 deletion src/components/wallet/tokens/TokenList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default function TokenList({ onSendClick }: { onSendClick: (tokenBalance:
</>
) : (
<Card flexDirection="column">
<Text alignSelf="center" variant="large" color="text50" padding="4">
<Text textAlign="center" variant="medium" color="text50" padding="4">
Import ERC 20 token address
</Text>
</Card>
Expand Down

0 comments on commit 5e39ad2

Please sign in to comment.