Merge pull request #659 from GlancingMind/make-webui-comment-input-resizable

Make comment input vertically resizable
This commit is contained in:
Michael Muré 2021-05-02 12:06:29 +02:00 committed by GitHub
commit dc875530a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,11 @@ const useStyles = makeStyles((theme) => ({
margin: theme.spacing(2, 0),
padding: theme.spacing(0, 2, 2, 2),
},
textarea: {},
textarea: {
'& textarea.MuiInputBase-input': {
resize: 'vertical',
},
},
tabContent: {
margin: theme.spacing(2, 0),
},