Valentin D. Pinkman
7 years ago
No known key found for this signature in database
GPG Key ID: E7D110669FFB8D3E
2 changed files with
5 additions and
2 deletions
-
src/components/OperationsList/AccountCell.js
-
src/components/OperationsList/AddressCell.js
|
|
@ -11,8 +11,9 @@ const Cell = styled(Box).attrs({ |
|
|
|
horizontal: true, |
|
|
|
alignItems: 'center', |
|
|
|
})` |
|
|
|
width: 150px; |
|
|
|
flex: 1; |
|
|
|
overflow: hidden; |
|
|
|
max-width: 400px; |
|
|
|
` |
|
|
|
|
|
|
|
type Props = { |
|
|
@ -43,6 +44,8 @@ const AccountNameEllipsis = styled(Box).attrs({ |
|
|
|
color: 'dark', |
|
|
|
flexShrink: 1, |
|
|
|
})` |
|
|
|
flex: 1; |
|
|
|
min-width: 0; |
|
|
|
display: block; |
|
|
|
overflow: hidden; |
|
|
|
text-overflow: ellipsis; |
|
|
|
|
|
@ -29,7 +29,7 @@ const Address = ({ value }: { value: string }) => { |
|
|
|
const AddressEllipsis = styled.div` |
|
|
|
display: block; |
|
|
|
flex-shrink: 1; |
|
|
|
min-width: 20px; |
|
|
|
|
|
|
|
overflow: hidden; |
|
|
|
text-overflow: ellipsis; |
|
|
|
white-space: nowrap; |
|
|
|