Skip to content

Commit

Permalink
tighter columns
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincolyer committed Aug 23, 2022
1 parent 8d2b195 commit bfcc4a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node-polo.demo.js
Expand Up @@ -397,7 +397,7 @@ for (const symbol of interestingMarkets) {
// tableOfOrders
var tableOfOrders = new Table({
head: ['Order', 'Prox %', '24hrs %', 'Type', 'Rate', 'Amount', 'Value'],
colWidths: [15, 15, 10, 6, 20, 15, 20],
colWidths: [13, 12, 10, 6, 15, 15, 15],
colAligns: ['left', 'right', 'right', 'right', 'right', 'right', 'right']
});

Expand Down Expand Up @@ -427,7 +427,7 @@ tableOfOrders.push(['', '', '', '', '', 'TOTAL', moneydollar(total)])

var tableOfCoins = new Table({
head: ['Coin', 'Avail', 'Hold', 'Total', 'Value USD', 'Value BTC'],
colWidths: [10, 20, 20, 20, 15, 20],
colWidths: [10, 18, 18, 18, 15, 15],
colAligns: ['left', 'right', 'right', 'right', 'right', 'right']
});

Expand Down

0 comments on commit bfcc4a5

Please sign in to comment.