Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Merge pull request #514 from bluesky-social/ollie/ap-dark-mode

Fix App Passwords iOS dark mode modal

authored by

Ollie Hsieh and committed by
GitHub
eb6b36be 2b962791

+10 -6
+10 -6
src/view/com/modals/AddAppPasswords.tsx
··· 90 90 <View style={[styles.container, pal.view]} testID="addAppPasswordsModal"> 91 91 <View> 92 92 {!appPassword ? ( 93 - <Text type="lg"> 93 + <Text type="lg" style={[pal.text]}> 94 94 Please enter a unique name for this App Password. We have generated 95 95 a random name for you. 96 96 </Text> 97 97 ) : ( 98 - <Text type="lg"> 99 - <Text type="lg-bold">Here is your app password.</Text> Use this to 100 - sign into the other app along with your handle. 98 + <Text type="lg" style={[pal.text]}> 99 + <Text type="lg-bold" style={[pal.text]}> 100 + Here is your app password. 101 + </Text>{' '} 102 + Use this to sign into the other app along with your handle. 101 103 </Text> 102 104 )} 103 105 {!appPassword ? ( ··· 126 128 <TouchableOpacity 127 129 style={[pal.border, styles.passwordContainer, pal.btn]} 128 130 onPress={onCopy}> 129 - <Text type="2xl-bold">{appPassword}</Text> 131 + <Text type="2xl-bold" style={[pal.text]}> 132 + {appPassword} 133 + </Text> 130 134 {wasCopied ? ( 131 135 <Text style={[pal.textLight]}>Copied</Text> 132 136 ) : ( ··· 162 166 container: { 163 167 flex: 1, 164 168 paddingBottom: isDesktopWeb ? 0 : 50, 165 - marginHorizontal: 16, 169 + paddingHorizontal: 16, 166 170 }, 167 171 textInputWrapper: { 168 172 borderRadius: 8,