diff --git a/src/components/OperationsList/AccountCell.js b/src/components/OperationsList/AccountCell.js index 1612c921..3e2405f1 100644 --- a/src/components/OperationsList/AccountCell.js +++ b/src/components/OperationsList/AccountCell.js @@ -29,12 +29,22 @@ class AccountCell extends PureComponent { {Icon && } - - {accountName} - + {accountName} ) } } export default AccountCell + +const AccountNameEllipsis = styled(Box).attrs({ + ff: 'Open Sans|SemiBold', + fontSize: 3, + color: 'dark', + flexShrink: 1, +})` + display: block; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +`