Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix to text consistency in composer

+8 -2
+8 -2
src/view/com/composer/ComposePost.tsx
··· 174 174 return v 175 175 } else { 176 176 return ( 177 - <Text key={i++} style={pal.link}> 177 + <Text key={i++} style={[pal.link, styles.textInputFormatting]}> 178 178 {v.link} 179 179 </Text> 180 180 ) ··· 279 279 onChangeText={(text: string) => onChangeText(text)} 280 280 placeholder={selectTextInputPlaceholder} 281 281 placeholderTextColor={pal.colors.textLight} 282 - style={[pal.text, styles.textInput]}> 282 + style={[ 283 + pal.text, 284 + styles.textInput, 285 + styles.textInputFormatting, 286 + ]}> 283 287 {textDecorated} 284 288 </TextInput> 285 289 </View> ··· 420 424 padding: 5, 421 425 marginLeft: 8, 422 426 alignSelf: 'flex-start', 427 + }, 428 + textInputFormatting: { 423 429 fontSize: 18, 424 430 letterSpacing: 0.2, 425 431 fontWeight: '400',