diff options
author | Sascha <GlancingMind@outlook.com> | 2021-05-01 16:12:20 +0200 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-05-01 16:13:06 +0200 |
commit | e74f624c928f40f50f8935aceba5cf96ba48d2f8 (patch) | |
tree | 9f021ce61b776e09dc5bc51fd414d2794b297320 /webui | |
parent | 87df46bd7515e18d7bd35d29da4b70c5d29c3ffc (diff) | |
download | git-bug-e74f624c928f40f50f8935aceba5cf96ba48d2f8.tar.gz |
Make comment input vertically resizable
Diffstat (limited to 'webui')
-rw-r--r-- | webui/src/components/CommentInput/CommentInput.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/webui/src/components/CommentInput/CommentInput.tsx b/webui/src/components/CommentInput/CommentInput.tsx index 7bf0995d..c0e3edfc 100644 --- a/webui/src/components/CommentInput/CommentInput.tsx +++ b/webui/src/components/CommentInput/CommentInput.tsx @@ -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), }, |