feat: make theme select input longer

This commit is contained in:
Deluan 2020-03-31 18:43:54 -04:00
parent eb621be646
commit dd2e98fca2

View File

@ -8,7 +8,7 @@ import themes from '../themes'
const useStyles = makeStyles({ const useStyles = makeStyles({
label: { width: '10em', display: 'inline-block' }, label: { width: '10em', display: 'inline-block' },
button: { margin: '1em' } select: { minWidth: 200 }
}) })
const Configuration = () => { const Configuration = () => {
@ -24,6 +24,7 @@ const Configuration = () => {
<CardContent> <CardContent>
<div className={classes.label}>{translate('menu.theme')}</div> <div className={classes.label}>{translate('menu.theme')}</div>
<Select <Select
className={classes.select}
value={theme} value={theme}
variant="filled" variant="filled"
onChange={(event) => { onChange={(event) => {