diff --git a/lib/components/connected-wallet-info.css b/lib/components/connected-wallet-info.css index 7351e4d37..db890c5cb 100644 --- a/lib/components/connected-wallet-info.css +++ b/lib/components/connected-wallet-info.css @@ -1,54 +1,55 @@ div.container { display: flex; flex-direction: row; align-items: center; justify-content: space-between; padding: 10px 20px; border-radius: 8px; background-color: #282537; border: #302b42 solid 1px; transition: background-color 0.2s ease, border 0.2s ease, box-shadow 0.2s ease; } div.container:hover { cursor: pointer; background-color: #302b42; border: #6a20e3 solid 1px; box-shadow: 2px 4px 20px #6a20e333; transition: background-color 0.2s ease, border 0.2s ease, box-shadow 0.2s ease; } div.avatar { box-sizing: content-box; display: flex; align-items: center; justify-content: center; height: 16px; width: 16px; padding: 8px; border-radius: 16px; } div.avatar img { border-radius: 18px; + max-width: initial; } div.address p { font-size: 18px; } div.chevronDown { display: flex; align-content: center; justify-content: center; color: white; } div p { padding-bottom: 0; } div.container p { padding-bottom: 0; font-weight: bold; }