Skip to content

Commit d797b5c

Browse files
committed
#1324 sizing and margin changes
1 parent d73ded7 commit d797b5c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/frontend/src/components/ReactHookEditableList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const ReactHookEditableList: React.FC<ReactHookEditableListProps> = ({
2525
<Grid container spacing={2}>
2626
{ls.map((_element, i) => {
2727
return (
28-
<Grid item sx={{ alignItems: 'center' }} xs={12} md={4}>
28+
<Grid item sx={{ alignItems: 'center' }} xs={12} md={6} lg={4}>
2929
<InputLabel>{bulletName + ' ' + (i + 1)}</InputLabel>
3030
<Box sx={{ display: 'flex', alignItems: 'start' }}>
3131
<TextField
@@ -41,7 +41,7 @@ const ReactHookEditableList: React.FC<ReactHookEditableListProps> = ({
4141
<IconButton
4242
type="button"
4343
onClick={() => remove(i)}
44-
sx={{ mx: 1, color: 'red', marginLeft: '15px', borderRadius: '4px', outline: 'solid' }}
44+
sx={{ mx: 1, color: 'red', marginLeft: '15px', borderRadius: '4px', outline: 'solid', marginTop: '3px' }}
4545
>
4646
<DeleteIcon />
4747
</IconButton>

0 commit comments

Comments
 (0)