Factions Augmentation page now lists purchased augmentation separatly.

This commit is contained in:
Olivier Gagnon
2021-03-21 18:03:16 -04:00
parent e8aa1851c5
commit 04bc2bebdd
5 changed files with 44 additions and 28 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ export function StatsTable(rows: any[][], title: string | null): React.ReactElem
return <tr key={row[0]}>
{row.map((elem: any, i: number) => {
let style = {};
if (i !== 0) style = {textAlign: 'right'};
if (i !== 0) style = {textAlign: 'right', paddingLeft: '.25em'};
return <td key={i} style={style}>{elem}</td>
})}
</tr>