Skip to content

Commit 1a2014c

Browse files
committed
#1328 margin changes
1 parent dfca47f commit 1a2014c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/frontend/src/components/ReactHookEditableList.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ const ReactHookEditableList: React.FC<ReactHookEditableListProps> = ({ name, ls,
2020
{ls.map((_element, i) => {
2121
return (
2222
<Grid item xs={12} md={6} lg={4} key={`${name}-${i}`}>
23-
<InputLabel sx={{ marginBottom: '5px' }}>
23+
<InputLabel sx={{ marginBottom: '5px', marginTop: '7px' }}>
2424
{bulletName} {i + 1}
2525
</InputLabel>
26-
<Box sx={{ display: 'flex', alignItems: 'start', marginBottom: '20px' }}>
26+
<Box sx={{ display: 'flex', alignItems: 'start', marginBottom: '10px' }}>
2727
<TextField
2828
required
2929
autoComplete="off"
@@ -36,7 +36,7 @@ const ReactHookEditableList: React.FC<ReactHookEditableListProps> = ({ name, ls,
3636
<IconButton
3737
type="button"
3838
onClick={() => remove(i)}
39-
sx={{ mx: 1, color: 'red', marginLeft: '15px', borderRadius: '4px', outline: 'solid' }}
39+
sx={{ mx: 1, color: 'red', marginLeft: '15px', marginTop: '3px', borderRadius: '4px', outline: 'solid' }}
4040
>
4141
<DeleteIcon />
4242
</IconButton>

0 commit comments

Comments
 (0)