Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions packages/extension-ui/src/Popup/Accounts/Account.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,12 @@ export default styled(Account)`
${Address} {
margin-bottom: 8px;
}

.edit-name {
position: absolute;
left: 73px;
top: 8px;
flex: 1;
left: 80px;
top: 6px;
width: 315px;
}
`;
7 changes: 5 additions & 2 deletions packages/extension-ui/src/components/Address.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ function Address ({ address, className, children, genesisHash, name, actions }:
</>
)}
</AccountInfoRow>
{children}
</div>
{children}
</div>
);
}
Expand All @@ -119,14 +119,17 @@ const Info = styled.div`
`;

const Name = styled.div`
overflow: hidden;
text-overflow: ellipsis;
width: 300px;
margin: 2px 0;
font-weight: 600;
font-size: 16px;
line-height: 22px;
`;

const FullAddress = styled.div`
width: 250px;
width: 300px;
overflow: hidden;
text-overflow: ellipsis;
color: ${({ theme }): string => theme.labelColor};
Expand Down