about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-03-20 19:08:48 -0500
committerGitHub <noreply@github.com>2023-03-20 19:08:48 -0500
commitc1d454b7cfe6a7ec107b39483df9cb0fb64e1c76 (patch)
tree04e44361d52f7a8f0dc0dc08793202668edbbf6f
parent67e4882bb372bc45d178e3eacc409cdbf60f1344 (diff)
downloadvoidsky-c1d454b7cfe6a7ec107b39483df9cb0fb64e1c76.tar.zst
Fix sizing on the composer text input (#331)
-rw-r--r--src/view/com/composer/text-input/TextInput.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx
index 877945b96..e72b41f0a 100644
--- a/src/view/com/composer/text-input/TextInput.tsx
+++ b/src/view/com/composer/text-input/TextInput.tsx
@@ -210,10 +210,11 @@ export const TextInput = React.forwardRef(
 
 const styles = StyleSheet.create({
   container: {
-    width: '100%',
+    flex: 1,
   },
   textInput: {
     flex: 1,
+    width: '100%',
     minHeight: 80,
     padding: 5,
     paddingBottom: 20,