diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-18 13:22:34 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-01-18 13:22:34 -0600 |
commit | c97045a21ad47ea6c03855a776792e0b181e2097 (patch) | |
tree | 5dfb619e3ac78e8a71721db1a17ba05df03da23f /src | |
parent | 726ff6bb01d63c060c49bc1ea20fa1812e18723e (diff) | |
download | voidsky-c97045a21ad47ea6c03855a776792e0b181e2097.tar.zst |
Fix to text consistency in composer
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/composer/ComposePost.tsx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/view/com/composer/ComposePost.tsx b/src/view/com/composer/ComposePost.tsx index 3cb31c536..d71f33e96 100644 --- a/src/view/com/composer/ComposePost.tsx +++ b/src/view/com/composer/ComposePost.tsx @@ -174,7 +174,7 @@ export const ComposePost = observer(function ComposePost({ return v } else { return ( - <Text key={i++} style={pal.link}> + <Text key={i++} style={[pal.link, styles.textInputFormatting]}> {v.link} </Text> ) @@ -279,7 +279,11 @@ export const ComposePost = observer(function ComposePost({ onChangeText={(text: string) => onChangeText(text)} placeholder={selectTextInputPlaceholder} placeholderTextColor={pal.colors.textLight} - style={[pal.text, styles.textInput]}> + style={[ + pal.text, + styles.textInput, + styles.textInputFormatting, + ]}> {textDecorated} </TextInput> </View> @@ -420,6 +424,8 @@ const styles = StyleSheet.create({ padding: 5, marginLeft: 8, alignSelf: 'flex-start', + }, + textInputFormatting: { fontSize: 18, letterSpacing: 0.2, fontWeight: '400', |