fix: remove extra margin

This commit is contained in:
karishmas6
2024-10-28 19:35:27 +05:30
parent 63688ff4cb
commit 1f769456c8

View File

@@ -144,12 +144,8 @@ const ProxyForm: React.FC = () => {
</Tabs> </Tabs>
{tabIndex === 0 && ( {tabIndex === 0 && (
isProxyConfigured ? ( isProxyConfigured ? (
<Box sx={{ maxWidth: 600, width: '100%', marginTop: '20px' }}> <Box sx={{ maxWidth: 600, width: '100%', marginTop: '5px' }}>
<Box sx={{ maxWidth: 600, width: '100%', marginTop: '20px' }}> <TableContainer component={Paper} sx={{ marginBottom: '20px' }}>
<Typography variant="subtitle1" gutterBottom component="div">
Current Proxy Configuration
</Typography>
<TableContainer component={Paper} sx={{ margin: '30px 0px' }}>
<Table> <Table>
<TableHead> <TableHead>
<TableRow> <TableRow>
@@ -165,7 +161,6 @@ const ProxyForm: React.FC = () => {
</TableBody> </TableBody>
</Table> </Table>
</TableContainer> </TableContainer>
</Box>
<Button variant="outlined" color="primary" onClick={testProxy}> <Button variant="outlined" color="primary" onClick={testProxy}>
Test Proxy Test Proxy
</Button> </Button>