Skip to content

Commit 27e3ece

Browse files
authored
fix: add padding to connect wallets section (#83)
1 parent c3bfc21 commit 27e3ece

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/playground/src/components/evm/EvmWalletConnector.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const EvmWalletConnector = (): JSX.Element => {
1212
if (isConnected) {
1313
return (
1414
<div className="connected-wallet-container">
15-
<p className="break-all">{address}</p>
15+
<p>{address}</p>
1616
<button className="connect-button" onClick={() => disconnect()}>
1717
Disconnect
1818
</button>

src/playground/src/index.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ p,
5252
align-items: center;
5353
gap: 12px;
5454
font-size: 14px;
55+
padding: 0 8px;
5556
}
5657

5758
/* The Modal (background) */

0 commit comments

Comments
 (0)