aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-01-11 03:14:50 +0000
committerGravatar GitHub <[email protected]>2021-01-11 03:14:50 +0000
commit9c2e47ca23a4906794fa535f2b0a237235f9beca (patch)
treeda547a4a143d8c5533df425a88872f813d1dda10
parentFixes Subtle Alignment Issues (diff)
Lock textarea resizing to vertical
-rw-r--r--src/components/InputTypes/TextArea.tsx1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/InputTypes/TextArea.tsx b/src/components/InputTypes/TextArea.tsx
index 2b7a5f6..21300fb 100644
--- a/src/components/InputTypes/TextArea.tsx
+++ b/src/components/InputTypes/TextArea.tsx
@@ -12,6 +12,7 @@ const styles = css`
min-width: 40%;
width: 100%;
box-sizing: border-box;
+ resize: vertical;
padding: 1rem;
`;