diff options
-rw-r--r-- | src/screens/chat/ChatScreen.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/screens/chat/ChatScreen.tsx b/src/screens/chat/ChatScreen.tsx index a8e975eb..ee0686d1 100644 --- a/src/screens/chat/ChatScreen.tsx +++ b/src/screens/chat/ChatScreen.tsx @@ -52,6 +52,9 @@ const ChatScreen: React.FC<ChatScreenProps> = ({navigation}) => { backgroundColor: '#f8f8f8', height: 70, }, + inputBox: { + fontSize: 16, + }, }, avatar: { container: { @@ -103,6 +106,11 @@ const ChatScreen: React.FC<ChatScreenProps> = ({navigation}) => { borderBottomRightRadius: 10, borderTopRightRadius: 10, }, + markdown: { + text: { + fontSize: 16, + } + }, }, status: { statusContainer: {}, |