QoI: Increase HacknetNodeElem name colSpan

Spanning {node.name} across all three table columns in the Hacknet Node UI uses a bit less screen real estate, so that on larger font sizes you don't end up with e.g. "hacknet- " on one line and "node-11" on the next.
This commit is contained in:
David Thompson 2022-01-31 21:46:47 +13:00 committed by GitHub
parent 9ddb1c4379
commit 37bf1aac81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -172,7 +172,7 @@ export function HacknetNodeElem(props: IProps): React.ReactElement {
<Table size="small"> <Table size="small">
<TableBody> <TableBody>
<TableRow> <TableRow>
<TableCell> <TableCell colSpan={3}>
<Typography>{node.name}</Typography> <Typography>{node.name}</Typography>
</TableCell> </TableCell>
</TableRow> </TableRow>