Skip to content

Commit

Permalink
fix: portfolio column spacing (#1698)
Browse files Browse the repository at this point in the history
  • Loading branch information
JP authored Nov 22, 2023
1 parent 96f1db3 commit 2ca2223
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion centrifuge-app/src/components/Portfolio/InvestedTokens.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ const columns: Column[] = [
cell: (token: Row) => {
return <TokenWithIcon {...token} />
},
width: '2fr',
},
{
header: 'Token price',
Expand All @@ -50,6 +49,7 @@ const columns: Column[] = [
</Text>
)
},
align: 'left',
},
{
header: <SortableTableHeader label="Position" />,
Expand All @@ -61,6 +61,7 @@ const columns: Column[] = [
)
},
sortKey: 'position',
align: 'left',
},
{
header: <SortableTableHeader label="Market value" />,
Expand All @@ -72,6 +73,7 @@ const columns: Column[] = [
)
},
sortKey: 'marketValue',
align: 'left',
},
{
align: 'left',
Expand Down

0 comments on commit 2ca2223

Please sign in to comment.