diff options
Diffstat (limited to 'src/view/com/composer')
-rw-r--r-- | src/view/com/composer/Autocomplete.tsx | 4 | ||||
-rw-r--r-- | src/view/com/composer/ComposePost.tsx | 9 | ||||
-rw-r--r-- | src/view/com/composer/Prompt.tsx | 2 |
3 files changed, 9 insertions, 6 deletions
diff --git a/src/view/com/composer/Autocomplete.tsx b/src/view/com/composer/Autocomplete.tsx index 2ccd05653..d3f99627c 100644 --- a/src/view/com/composer/Autocomplete.tsx +++ b/src/view/com/composer/Autocomplete.tsx @@ -50,9 +50,9 @@ export function Autocomplete({ key={i} style={[pal.border, styles.item]} onPress={() => onSelect(item.handle)}> - <Text style={pal.text}> + <Text type="md-medium" style={pal.text}> {item.displayName || item.handle} - <Text type="body2" style={pal.textLight}> + <Text type="sm" style={pal.textLight}> @{item.handle} </Text> </Text> diff --git a/src/view/com/composer/ComposePost.tsx b/src/view/com/composer/ComposePost.tsx index 790e0f784..b3a5680f2 100644 --- a/src/view/com/composer/ComposePost.tsx +++ b/src/view/com/composer/ComposePost.tsx @@ -243,12 +243,12 @@ export const ComposePost = observer(function ComposePost({ /> <View style={styles.replyToPost}> <TextLink - type="h5" + type="xl-medium" href={`/profile/${replyTo.author.handle}`} text={replyTo.author.displayName || replyTo.author.handle} style={[pal.text]} /> - <Text style={pal.text} numberOfLines={6}> + <Text type="post-text" style={pal.text} numberOfLines={6}> {replyTo.text} </Text> </View> @@ -408,9 +408,12 @@ const styles = StyleSheet.create({ textInput: { flex: 1, padding: 5, - fontSize: 18, marginLeft: 8, alignSelf: 'flex-start', + fontSize: 18, + letterSpacing: 0.2, + fontWeight: '400', + lineHeight: 23.4, // 1.3*16 }, replyToLayout: { flexDirection: 'row', diff --git a/src/view/com/composer/Prompt.tsx b/src/view/com/composer/Prompt.tsx index e8f52f84a..0b420021a 100644 --- a/src/view/com/composer/Prompt.tsx +++ b/src/view/com/composer/Prompt.tsx @@ -26,7 +26,7 @@ export function ComposePrompt({ ]} onPress={onPressCompose}> <View style={styles.textContainer}> - <Text type="h5" style={[pal.textLight, {fontWeight: 'normal'}]}> + <Text type="lg" style={[pal.textLight]}> {text} </Text> </View> |