File tree Expand file tree Collapse file tree
src/frontend/src/pages/AdminToolsPage Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- import { Grid } from '@mui/material';
1+ import { Box, Grid, Typography } from '@mui/material';
22import VendorsTable from './FinanceConfig/VendorsTable';
33import AccountCodesTable from './FinanceConfig/AccountCodesTable';
44
55const 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
You can’t perform that action at this time.
0 commit comments