Skip to content

Commit 890e301

Browse files
committed
#2141: minor tweaks
1 parent c364073 commit 890e301

1 file changed

Lines changed: 13 additions & 8 deletions

File tree

src/frontend/src/pages/AdminToolsPage/AdminToolsFinanceConfig.tsx

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
1-
import { Grid } from '@mui/material';
1+
import { Box, Grid, Typography } from '@mui/material';
22
import VendorsTable from './FinanceConfig/VendorsTable';
33
import AccountCodesTable from './FinanceConfig/AccountCodesTable';
44

55
const AdminToolsFinanceConfig: React.FC = () => {
66
return (
7-
<Grid container spacing="3%" paddingLeft="5px">
8-
<Grid item direction="column" xs={12} md={6}>
9-
<VendorsTable />
7+
<Box padding="5px">
8+
<Typography marginBottom="15px" variant="h5">
9+
Finance Config
10+
</Typography>
11+
<Grid container spacing="3%">
12+
<Grid item direction="column" xs={12} md={6}>
13+
<VendorsTable />
14+
</Grid>
15+
<Grid item direction="column" alignSelf="right" xs={12} md={6}>
16+
<AccountCodesTable />
17+
</Grid>
1018
</Grid>
11-
<Grid item direction="column" alignSelf="right" xs={12} md={6}>
12-
<AccountCodesTable />
13-
</Grid>
14-
</Grid>
19+
</Box>
1520
);
1621
};
1722

0 commit comments

Comments
 (0)