Skip to content

Commit

Permalink
[BX-1445] fix: tweak signing-with ui to handle long wallet names (#1525)
Browse files Browse the repository at this point in the history
  • Loading branch information
derHowie authored Apr 30, 2024
1 parent a91e1c9 commit 38d16bf
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/entries/popup/pages/messages/AccountSigningWith.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,16 @@ export function AccountSigningWith({
const address = session.address;

return (
<Inline alignVertical="center" space="8px">
<Inline alignVertical="center" space="8px" wrap={false}>
<WalletAvatar addressOrName={address} size={36} emojiSize="20pt / 150%" />
<Stack space="10px">
<Inline alignVertical="center" space="4px">
<Text size="14pt" weight="bold" color="labelTertiary">
<Inline alignVertical="center" space="4px" wrap={false}>
<Text
size="14pt"
weight="bold"
color="labelTertiary"
whiteSpace="nowrap"
>
{i18n.t('approve_request.signing_with')}
</Text>
<WalletName address={address} size="14pt" weight="bold" />
Expand Down

0 comments on commit 38d16bf

Please sign in to comment.