Skip to content

Commit

Permalink
Fix spacing around conversation text box (#522)
Browse files Browse the repository at this point in the history
  • Loading branch information
duogenesis authored Dec 22, 2024
1 parent 4e876af commit 8de775f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/conversation-screen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,10 @@ const TextInputWithButton = ({
<DefaultLongTextInput
style={{
...styles.textInput,
...{ maxHeight: height * 0.4 },
...{
minHeight: 50,
maxHeight: height * 0.4
},
}}
value={text}
onChangeText={maybeSetText}
Expand Down Expand Up @@ -870,6 +873,7 @@ const styles = StyleSheet.create({
maxWidth: 600,
width: '100%',
paddingHorizontal: 10,
marginTop: 10,
marginBottom: 10,
alignSelf: 'center',
alignItems: 'flex-end',
Expand Down

0 comments on commit 8de775f

Please sign in to comment.