fix: regression in tooltips, autocomplete and font

This commit is contained in:
Taranto 2020-09-09 16:38:20 +01:00 committed by Josh Harvey
parent 6f5cb385b0
commit 99b400f21c
18 changed files with 348 additions and 277 deletions

View file

@ -94,14 +94,14 @@ const Transactions = () => {
},
{
header: 'Cash',
width: 110,
width: 144,
textAlign: 'right',
size: 'sm',
view: it => `${Number.parseFloat(it.fiat)} ${it.fiatCode}`
},
{
header: 'Crypto',
width: 141,
width: 144,
textAlign: 'right',
size: 'sm',
view: it =>
@ -114,21 +114,21 @@ const Transactions = () => {
view: R.path(['toAddress']),
className: classes.overflowTd,
size: 'sm',
width: 136
width: 140
},
{
header: 'Date (UTC)',
view: it => moment.utc(it.created).format('YYYY-MM-DD'),
textAlign: 'right',
size: 'sm',
width: 144
width: 140
},
{
header: 'Time (UTC)',
view: it => moment.utc(it.created).format('HH:mm:ss'),
textAlign: 'right',
size: 'sm',
width: 144
width: 140
}
]