diff options
Diffstat (limited to 'src/components/messages/ChatInputSubmit.tsx')
-rw-r--r-- | src/components/messages/ChatInputSubmit.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/components/messages/ChatInputSubmit.tsx b/src/components/messages/ChatInputSubmit.tsx index 6180ef20..9e29ad4d 100644 --- a/src/components/messages/ChatInputSubmit.tsx +++ b/src/components/messages/ChatInputSubmit.tsx @@ -9,7 +9,7 @@ interface ChatInputSubmitProps { onPress: () => void; } -const SIZE = normalize(30); +const SIZE = normalize(25); const ChatInputSubmit: React.FC<ChatInputSubmitProps> = (props) => { const {outlined, onPress} = props; @@ -36,9 +36,6 @@ const styles = StyleSheet.create({ borderRadius: 999, justifyContent: 'center', alignItems: 'center', - marginRight: '3%', - marginVertical: '2%', - alignSelf: 'flex-end', }, background: { backgroundColor: TAGG_LIGHT_BLUE, |