Fix asset value column alignment (#1778)

This commit is contained in:
Agustín Longoni 2021-01-15 16:06:05 -03:00 committed by GitHub
parent 1a50b59404
commit 188dc80912
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,6 @@ export const styles = createStyles({
marginRight: sm, marginRight: sm,
}, },
currencyValueRow: { currencyValueRow: {
maxWidth: '125px',
textAlign: 'right', textAlign: 'right',
}, },
}) })

View File

@ -105,6 +105,7 @@ export const generateColumns = (): List<TableColumn> => {
const value: TableColumn = { const value: TableColumn = {
id: BALANCE_TABLE_VALUE_ID, id: BALANCE_TABLE_VALUE_ID,
align: 'right',
order: true, order: true,
label: 'Value', label: 'Value',
custom: false, custom: false,