From ae22e17de1d9745b0f49c09ccc11ea92dd976907 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Mon, 23 May 2022 17:28:00 -0700 Subject: Fix forms --- modern/src/settings/CommandSendPage.js | 47 +++++++++++++++++----------------- 1 file changed, 24 insertions(+), 23 deletions(-) (limited to 'modern/src/settings/CommandSendPage.js') diff --git a/modern/src/settings/CommandSendPage.js b/modern/src/settings/CommandSendPage.js index 29c9df46..55e26ec8 100644 --- a/modern/src/settings/CommandSendPage.js +++ b/modern/src/settings/CommandSendPage.js @@ -7,7 +7,6 @@ import { Typography, Container, Button, - FormControl, } from '@mui/material'; import makeStyles from '@mui/styles/makeStyles'; import ExpandMoreIcon from '@mui/icons-material/ExpandMore'; @@ -23,6 +22,8 @@ const useStyles = makeStyles((theme) => ({ marginTop: theme.spacing(2), }, buttons: { + marginTop: theme.spacing(2), + marginBottom: theme.spacing(2), display: 'flex', justifyContent: 'space-evenly', '& > *': { @@ -30,7 +31,10 @@ const useStyles = makeStyles((theme) => ({ }, }, details: { + display: 'flex', flexDirection: 'column', + gap: theme.spacing(2), + paddingBottom: theme.spacing(3), }, })); @@ -85,7 +89,6 @@ const CommandSendPage = () => { setSavedId(e.target.value)} @@ -98,27 +101,25 @@ const CommandSendPage = () => { )} - -
- - -
-
+
+ + +
); -- cgit v1.2.3