aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components
diff options
context:
space:
mode:
authorSascha <GlancingMind@outlook.com>2021-05-01 16:12:20 +0200
committerSascha <GlancingMind@outlook.com>2021-05-01 16:13:06 +0200
commite74f624c928f40f50f8935aceba5cf96ba48d2f8 (patch)
tree9f021ce61b776e09dc5bc51fd414d2794b297320 /webui/src/components
parent87df46bd7515e18d7bd35d29da4b70c5d29c3ffc (diff)
downloadgit-bug-e74f624c928f40f50f8935aceba5cf96ba48d2f8.tar.gz
Make comment input vertically resizable
Diffstat (limited to 'webui/src/components')
-rw-r--r--webui/src/components/CommentInput/CommentInput.tsx6
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),
},