diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-20 14:53:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 14:53:59 -0500 |
commit | 4f9e9e609e7ab902e2479447a555c94b719018d8 (patch) | |
tree | 52b0580d1815b62ba2dba3fa545688cda9345a54 /src/view/com/profile/ProfileCard.tsx | |
parent | d9ed13ea909db93a89ce31bbb506da64effc46f7 (diff) | |
download | voidsky-4f9e9e609e7ab902e2479447a555c94b719018d8.tar.zst |
* Fix dark mode rendering of 'follows you' pill * Fix the darkmode coloring of the PTR * Fix dark mode styles in dns instructions * Only lint the src dir
Diffstat (limited to 'src/view/com/profile/ProfileCard.tsx')
-rw-r--r-- | src/view/com/profile/ProfileCard.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/com/profile/ProfileCard.tsx b/src/view/com/profile/ProfileCard.tsx index 53f45fb11..7b454cc8b 100644 --- a/src/view/com/profile/ProfileCard.tsx +++ b/src/view/com/profile/ProfileCard.tsx @@ -62,7 +62,9 @@ export function ProfileCard({ {isFollowedBy && ( <View style={s.flexRow}> <View style={[s.mt5, pal.btn, styles.pill]}> - <Text type="xs">Follows You</Text> + <Text type="xs" style={pal.text}> + Follows You + </Text> </View> </View> )} |