Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix weird button wrapping on splash (#5507)

* Fix weird button wrapping on splash

* Web

authored by

Eric Bailey and committed by
GitHub
175df729 863764b3

+6 -10
+4 -5
src/view/com/auth/SplashScreen.tsx
··· 39 39 <Trans>What's up?</Trans> 40 40 </Text> 41 41 </View> 42 - <View testID="signinOrCreateAccount"> 42 + <View 43 + testID="signinOrCreateAccount" 44 + style={[a.px_xl, a.gap_md, a.pb_2xl]}> 43 45 <Button 44 46 testID="createAccountButton" 45 47 onPress={onPressCreateAccount} 46 - accessibilityRole="button" 47 48 label={_(msg`Create new account`)} 48 49 accessibilityHint={_( 49 50 msg`Opens flow to create a new Bluesky account`, 50 51 )} 51 - style={[a.mx_xl, a.mb_xl]} 52 52 size="large" 53 53 variant="solid" 54 54 color="primary"> 55 55 <ButtonText> 56 - <Trans>Create a new account</Trans> 56 + <Trans>Create account</Trans> 57 57 </ButtonText> 58 58 </Button> 59 59 <Button ··· 63 63 accessibilityHint={_( 64 64 msg`Opens flow to sign into your existing Bluesky account`, 65 65 )} 66 - style={[a.mx_xl, a.mb_xl]} 67 66 size="large" 68 67 variant="solid" 69 68 color="secondary">
+2 -5
src/view/com/auth/SplashScreen.web.tsx
··· 85 85 86 86 <View 87 87 testID="signinOrCreateAccount" 88 - style={[a.w_full, {maxWidth: 320}]}> 88 + style={[a.w_full, a.px_xl, a.gap_md, a.pb_2xl, {maxWidth: 320}]}> 89 89 <Button 90 90 testID="createAccountButton" 91 91 onPress={onPressCreateAccount} 92 - accessibilityRole="button" 93 92 label={_(msg`Create new account`)} 94 93 accessibilityHint={_( 95 94 msg`Opens flow to create a new Bluesky account`, 96 95 )} 97 - style={[a.mx_xl, a.mb_xl]} 98 96 size="large" 99 97 variant="solid" 100 98 color="primary"> 101 99 <ButtonText> 102 - <Trans>Create a new account</Trans> 100 + <Trans>Create account</Trans> 103 101 </ButtonText> 104 102 </Button> 105 103 <Button ··· 109 107 accessibilityHint={_( 110 108 msg`Opens flow to sign into your existing Bluesky account`, 111 109 )} 112 - style={[a.mx_xl, a.mb_xl]} 113 110 size="large" 114 111 variant="solid" 115 112 color="secondary">