diff options
author | brian-tagg <brian@tagg.id> | 2021-05-07 14:39:33 -0700 |
---|---|---|
committer | brian-tagg <brian@tagg.id> | 2021-05-07 14:39:33 -0700 |
commit | 8b1cb27a44a1d4f53f0d066002286912a222a9a8 (patch) | |
tree | ecafcbdfc28b027ee0b80d677529f066ba383413 /src/screens/chat/ChatScreen.tsx | |
parent | caac607ed90c35ad8d4b2787b170e1fd1f165333 (diff) |
Increased the font size by the 2pts
Diffstat (limited to 'src/screens/chat/ChatScreen.tsx')
-rw-r--r-- | src/screens/chat/ChatScreen.tsx | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/screens/chat/ChatScreen.tsx b/src/screens/chat/ChatScreen.tsx index 5874b8b6..7076db57 100644 --- a/src/screens/chat/ChatScreen.tsx +++ b/src/screens/chat/ChatScreen.tsx @@ -1,7 +1,7 @@ import {useBottomTabBarHeight} from '@react-navigation/bottom-tabs'; import {StackNavigationProp} from '@react-navigation/stack'; import React, {useContext, useEffect} from 'react'; -import {StyleSheet} from 'react-native'; +import {StyleSheet, Dimensions} from 'react-native'; import {SafeAreaView, useSafeAreaInsets} from 'react-native-safe-area-context'; import { Channel, @@ -54,6 +54,9 @@ const ChatScreen: React.FC<ChatScreenProps> = () => { backgroundColor: '#f8f8f8', height: 70, }, + inputBox: { + fontSize: 16, + }, }, avatar: { container: { @@ -105,6 +108,14 @@ const ChatScreen: React.FC<ChatScreenProps> = () => { borderBottomRightRadius: 10, borderTopRightRadius: 10, }, + markdown: { + image: { + height: Dimensions.get('screen').height, + }, + text: { + fontSize: 16, + } + }, }, status: { statusContainer: {}, |