fix(accounts): vertically center rows in the balance history modal
The base TableCell defaults to align-top, so a row's date and balance text sat above the vertically-centered action icons. Center the data-row cells so every column lines up.
This commit is contained in:
parent
5ee2892db4
commit
ec509676ed
|
|
@ -312,7 +312,10 @@ export function BalancesModal({
|
|||
</TableRow>
|
||||
) : (
|
||||
balances.map((balance) => (
|
||||
<TableRow key={balance.id}>
|
||||
<TableRow
|
||||
key={balance.id}
|
||||
className="[&>td]:align-middle"
|
||||
>
|
||||
<TableCell>
|
||||
{formatDate(
|
||||
balance.balance_date,
|
||||
|
|
|
|||
Loading…
Reference in New Issue