Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Tweak prompt styles on mobile web (#3193)

authored by

Eric Bailey and committed by
GitHub
653240bc 7af338ed

+4 -2
+3 -1
src/components/Prompt.tsx
··· 3 3 import {msg} from '@lingui/macro' 4 4 import {useLingui} from '@lingui/react' 5 5 6 + import {isNative} from '#/platform/detection' 6 7 import {useTheme, atoms as a, useBreakpoints} from '#/alf' 7 8 import {Text} from '#/components/Typography' 8 9 import {Button, ButtonColor, ButtonText} from '#/components/Button' ··· 84 85 a.justify_end, 85 86 gtMobile 86 87 ? [a.flex_row, a.flex_row_reverse, a.justify_start] 87 - : [a.flex_col, a.pt_md, a.pb_4xl], 88 + : [a.flex_col], 89 + isNative && [a.pb_4xl], 88 90 ]}> 89 91 {children} 90 92 </View>
+1 -1
src/view/com/profile/ProfileMenu.tsx
··· 305 305 confirmButtonCta={ 306 306 profile.viewer?.blocking ? _(msg`Unblock`) : _(msg`Block`) 307 307 } 308 - confirmButtonColor="negative" 308 + confirmButtonColor={profile.viewer?.blocking ? undefined : 'negative'} 309 309 /> 310 310 </EventStopper> 311 311 )