diff options
Diffstat (limited to 'modern/src/settings/CommandPage.js')
-rw-r--r-- | modern/src/settings/CommandPage.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modern/src/settings/CommandPage.js b/modern/src/settings/CommandPage.js index 5c306e4c..1d788610 100644 --- a/modern/src/settings/CommandPage.js +++ b/modern/src/settings/CommandPage.js @@ -9,9 +9,12 @@ import { useTranslation } from '../common/components/LocalizationProvider'; import BaseCommandView from './components/BaseCommandView'; import SettingsMenu from './components/SettingsMenu'; -const useStyles = makeStyles(() => ({ +const useStyles = makeStyles((theme) => ({ details: { + display: 'flex', flexDirection: 'column', + gap: theme.spacing(2), + paddingBottom: theme.spacing(3), }, })); @@ -41,7 +44,6 @@ const CommandPage = () => { </AccordionSummary> <AccordionDetails className={classes.details}> <TextField - margin="normal" value={item.description || ''} onChange={(event) => setItem({ ...item, description: event.target.value })} label={t('sharedDescription')} |