Make comment input vertically resizable

Sascha created

Change summary

webui/src/components/CommentInput/CommentInput.tsx | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)

Detailed changes

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),
   },