Bluesky app fork with some witchin' additions 💫

Increase hit slop for web's app language picker (#3535)

* fix: make app language picker tap region larger

* fix: add right padding on drawer signup card

noticeable on portuguese language

* fix: mimic hitSlop

authored by

Mary and committed by
GitHub
196dd3a8 a8c1e719

+13 -2
+10 -1
src/components/AppLanguageDropdown.web.tsx
··· 29 29 ) 30 30 31 31 return ( 32 - <View style={[a.flex_row, a.gap_sm, a.align_center, a.flex_shrink]}> 32 + <View 33 + style={[ 34 + // We don't have hitSlop here to increase the tap region, 35 + // alternative is negative margins. 36 + {height: 32, marginVertical: -((32 - 14) / 2)}, 37 + a.flex_row, 38 + a.gap_sm, 39 + a.align_center, 40 + a.flex_shrink, 41 + ]}> 33 42 <Text aria-hidden={true} style={t.atoms.text_contrast_medium}> 34 43 {APP_LANGUAGES.find(l => l.code2 === sanitizedLang)?.name} 35 44 </Text>
+3 -1
src/view/shell/Drawer.tsx
··· 224 224 /> 225 225 </View> 226 226 ) : ( 227 - <NavSignupCard /> 227 + <View style={{paddingRight: 20}}> 228 + <NavSignupCard /> 229 + </View> 228 230 )} 229 231 230 232 {hasSession ? (