make table header typography smaller

This commit is contained in:
Calli
2023-07-16 19:55:07 +03:00
parent 0214b82e14
commit 05196d1b64

View File

@@ -41,46 +41,62 @@ const PlanetaryIteractionTable = ({
character: AccessToken; character: AccessToken;
planets: Planet[]; planets: Planet[];
}) => { }) => {
const theme = useTheme();
return ( return (
<StackItem width="100%"> <StackItem width="100%">
<TableContainer component={Paper}> <TableContainer component={Paper}>
<Table size="small" aria-label="a dense table"> <Table size="small" aria-label="a dense table">
<TableHead> <TableHead>
<TableRow> <TableRow>
<TableCell width="13%">Planet</TableCell> <TableCell width="13%">
<Typography fontSize={theme.custom.smallText}>
Planet
</Typography>
</TableCell>
<TableCell width="2%"> <TableCell width="2%">
<Tooltip title="Command center upgrade level"> <Tooltip title="Command center upgrade level">
<Typography>CC</Typography> <Typography fontSize={theme.custom.smallText}>CC</Typography>
</Tooltip> </Tooltip>
</TableCell> </TableCell>
<TableCell width="20%"> <TableCell width="20%">
<Tooltip title="Extractor status and products"> <Tooltip title="Extractor status and products">
<Typography>Extraction</Typography> <Typography fontSize={theme.custom.smallText}>
Extraction
</Typography>
</Tooltip> </Tooltip>
</TableCell> </TableCell>
<TableCell width="20%"> <TableCell width="20%">
<Tooltip title="What factories are producing"> <Tooltip title="What factories are producing">
<Typography>Production</Typography> <Typography fontSize={theme.custom.smallText}>
Production
</Typography>
</Tooltip> </Tooltip>
</TableCell> </TableCell>
<TableCell width="20%"> <TableCell width="20%">
<Tooltip title="What imports factories need from outside"> <Tooltip title="What imports factories need from outside">
<Typography>Imports</Typography> <Typography fontSize={theme.custom.smallText}>
Imports
</Typography>
</Tooltip> </Tooltip>
</TableCell> </TableCell>
<TableCell width="20%"> <TableCell width="20%">
<Tooltip title="What exports factories are producing"> <Tooltip title="What exports factories are producing">
<Typography>Exports</Typography> <Typography fontSize={theme.custom.smallText}>
Exports
</Typography>
</Tooltip> </Tooltip>
</TableCell> </TableCell>
<TableCell width="5%"> <TableCell width="5%">
<Tooltip title="How many units per hour factories are producing"> <Tooltip title="How many units per hour factories are producing">
<Typography>u/h</Typography> <Typography fontSize={theme.custom.smallText}>u/h</Typography>
</Tooltip> </Tooltip>
</TableCell> </TableCell>
<TableCell width="5%"> <TableCell width="5%">
<Tooltip title="How many million ISK per month this planet is exporting (Jita sell min)"> <Tooltip title="How many million ISK per month this planet is exporting (Jita sell min)">
<Typography>ISK/M</Typography> <Typography fontSize={theme.custom.smallText}>
ISK/M
</Typography>
</Tooltip> </Tooltip>
</TableCell> </TableCell>
</TableRow> </TableRow>