Skip to content

Commit c364073

Browse files
committed
#2141 - further fixes
1 parent f9af71a commit c364073

1 file changed

Lines changed: 8 additions & 12 deletions

File tree

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

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

55
const AdminToolsFinanceConfig: React.FC = () => {
66
return (
7-
<div>
8-
<Typography variant="h4">Finance Config</Typography>
9-
<br />
10-
<Grid container spacing="3%">
11-
<Grid item direction="column" xs={12} md={6}>
12-
<VendorsTable />
13-
</Grid>
14-
<Grid item direction="column" alignSelf="right" xs={12} md={6}>
15-
<AccountCodesTable />
16-
</Grid>
7+
<Grid container spacing="3%" paddingLeft="5px">
8+
<Grid item direction="column" xs={12} md={6}>
9+
<VendorsTable />
1710
</Grid>
18-
</div>
11+
<Grid item direction="column" alignSelf="right" xs={12} md={6}>
12+
<AccountCodesTable />
13+
</Grid>
14+
</Grid>
1915
);
2016
};
2117

0 commit comments

Comments
 (0)