Fixes to dark mode (#238)

This commit is contained in:
Paul Frazee
2023-03-01 10:35:56 -06:00
committed by GitHub
parent a6e9ebec6e
commit d53caa390b
6 changed files with 29 additions and 18 deletions
+2 -2
View File
@@ -379,7 +379,7 @@ export const ComposePost = observer(function ComposePost({
</View>
{isProcessing ? (
<View style={[pal.btn, styles.processingLine]}>
<Text style={s.black}>{processingState}</Text>
<Text style={pal.text}>{processingState}</Text>
</View>
) : undefined}
{error !== '' && (
@@ -468,7 +468,7 @@ export const ComposePost = observer(function ComposePost({
key={`suggested-${url}`}
style={[pal.borderDark, styles.addExtLinkBtn]}
onPress={() => onPressAddLinkCard(url)}>
<Text>
<Text style={pal.text}>
Add link card: <Text style={pal.link}>{url}</Text>
</Text>
</TouchableOpacity>