From 7d43e25933a898670461d6f2ca5c04d0a0c41930 Mon Sep 17 00:00:00 2001 From: renahlee Date: Fri, 21 Apr 2023 22:10:45 -0700 Subject: Fix App Passwords iOS dark mode modal --- src/view/com/modals/AddAppPasswords.tsx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/view/com/modals/AddAppPasswords.tsx b/src/view/com/modals/AddAppPasswords.tsx index 1d2f80ff0..89ae81f5e 100644 --- a/src/view/com/modals/AddAppPasswords.tsx +++ b/src/view/com/modals/AddAppPasswords.tsx @@ -90,14 +90,16 @@ export function Component({}: {}) { {!appPassword ? ( - + Please enter a unique name for this App Password. We have generated a random name for you. ) : ( - - Here is your app password. Use this to - sign into the other app along with your handle. + + + Here is your app password. + {' '} + Use this to sign into the other app along with your handle. )} {!appPassword ? ( @@ -126,7 +128,9 @@ export function Component({}: {}) { - {appPassword} + + {appPassword} + {wasCopied ? ( Copied ) : ( @@ -162,7 +166,7 @@ const styles = StyleSheet.create({ container: { flex: 1, paddingBottom: isDesktopWeb ? 0 : 50, - marginHorizontal: 16, + paddingHorizontal: 16, }, textInputWrapper: { borderRadius: 8, -- cgit 1.4.1