signup: align "Contact support" to the right on larger displays (#10978)

This commit is contained in:
Lynx
2026-06-24 12:26:25 -05:00
committed by GitHub
parent 5b66015631
commit c909fef3f1
+9 -1
View File
@@ -3,6 +3,7 @@ import {AppState, type AppStateStatus, View} from 'react-native'
import ReactNativeDeviceAttest from 'react-native-device-attest' import ReactNativeDeviceAttest from 'react-native-device-attest'
import Animated, {FadeIn, LayoutAnimationConfig} from 'react-native-reanimated' import Animated, {FadeIn, LayoutAnimationConfig} from 'react-native-reanimated'
import {AppBskyGraphStarterpack} from '@atproto/api' import {AppBskyGraphStarterpack} from '@atproto/api'
import {tokens} from '@bsky.app/alf'
import {Trans, useLingui} from '@lingui/react/macro' import {Trans, useLingui} from '@lingui/react/macro'
import {FEEDBACK_FORM_URL} from '#/lib/constants' import {FEEDBACK_FORM_URL} from '#/lib/constants'
@@ -222,11 +223,17 @@ export function Signup({onPressBack}: {onPressBack: () => void}) {
a.align_center, a.align_center,
]}> ]}>
<AppLanguageDropdown /> <AppLanguageDropdown />
<View
style={
gtMobile
? [a.flex_1, a.flex, a.flex_row, a.justify_end]
: []
}>
<Text <Text
style={[ style={[
a.flex_1,
t.atoms.text_contrast_medium, t.atoms.text_contrast_medium,
!gtMobile && a.text_md, !gtMobile && a.text_md,
{paddingInline: tokens.space.sm},
]}> ]}>
<Trans>Having trouble?</Trans>{' '} <Trans>Having trouble?</Trans>{' '}
<InlineLinkText <InlineLinkText
@@ -238,6 +245,7 @@ export function Signup({onPressBack}: {onPressBack: () => void}) {
</Text> </Text>
</View> </View>
</View> </View>
</View>
</ScreenTransition> </ScreenTransition>
</LayoutAnimationConfig> </LayoutAnimationConfig>
</View> </View>