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/modals/ChangeHandle.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/modals/ChangeHandle.tsx')
-rw-r--r-- | src/view/com/modals/ChangeHandle.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/view/com/modals/ChangeHandle.tsx b/src/view/com/modals/ChangeHandle.tsx index 0795d6d20..f15f7ca43 100644 --- a/src/view/com/modals/ChangeHandle.tsx +++ b/src/view/com/modals/ChangeHandle.tsx @@ -363,7 +363,7 @@ function CustomHandleForm({ Add the following record to your domain: </Text> <View style={[styles.dnsTable, pal.btn]}> - <Text type="md-medium" style={styles.dnsLabel}> + <Text type="md-medium" style={[styles.dnsLabel, pal.text]}> Domain: </Text> <View style={[styles.dnsValue]}> @@ -371,7 +371,7 @@ function CustomHandleForm({ _atproto.{handle} </Text> </View> - <Text type="md-medium" style={styles.dnsLabel}> + <Text type="md-medium" style={[styles.dnsLabel, pal.text]}> Type: </Text> <View style={[styles.dnsValue]}> @@ -379,7 +379,7 @@ function CustomHandleForm({ TXT </Text> </View> - <Text type="md-medium" style={styles.dnsLabel}> + <Text type="md-medium" style={[styles.dnsLabel, pal.text]}> Value: </Text> <View style={[styles.dnsValue]}> @@ -415,7 +415,7 @@ function CustomHandleForm({ {isVerifying ? ( <ActivityIndicator color="white" /> ) : ( - <Text type="xl-medium" style={[pal.textInverted, s.textCenter]}> + <Text type="xl-medium" style={[s.white, s.textCenter]}> {canSave ? `Update to ${handle}` : 'Verify DNS Record'} </Text> )} |