Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

[Clipclops] Minor web tweaks (#3822)

* add a11y + onPress to web send button

* only adjust leading on web, due to overflow issue

authored by

Samuel Newman and committed by
GitHub
dadf27fd bff055f6

+8 -3
+4 -1
src/screens/Messages/Conversation/MessageInput.web.tsx
··· 78 78 /> 79 79 <Pressable 80 80 accessibilityRole="button" 81 + accessibilityLabel={_(msg`Send message`)} 82 + accessibilityHint="" 81 83 style={[ 82 84 a.rounded_full, 83 85 a.align_center, 84 86 a.justify_center, 85 87 {height: 30, width: 30, backgroundColor: t.palette.primary_500}, 86 - ]}> 88 + ]} 89 + onPress={onSubmit}> 87 90 <PaperPlane fill={t.palette.white} /> 88 91 </Pressable> 89 92 </View>
+4 -2
src/screens/Messages/List/index.tsx
··· 20 20 import {PreviewableUserAvatar} from '#/view/com/util/UserAvatar' 21 21 import {ViewHeader} from '#/view/com/util/ViewHeader' 22 22 import {CenteredView} from '#/view/com/util/Views' 23 - import {atoms as a, useBreakpoints, useTheme} from '#/alf' 23 + import {atoms as a, useBreakpoints, useTheme, web} from '#/alf' 24 24 import {Button, ButtonIcon, ButtonText} from '#/components/Button' 25 25 import {DialogControlProps, useDialogControl} from '#/components/Dialog' 26 26 import {ConvoMenu} from '#/components/dms/ConvoMenu' ··· 237 237 <PreviewableUserAvatar profile={otherUser} size={42} /> 238 238 </View> 239 239 <View style={[a.flex_1]}> 240 - <Text numberOfLines={1} style={[a.text_md, a.leading_normal]}> 240 + <Text 241 + numberOfLines={1} 242 + style={[a.text_md, web([a.leading_normal, {marginTop: -4}])]}> 241 243 <Text 242 244 style={[t.atoms.text, convo.unreadCount > 0 && a.font_bold]}> 243 245 {otherUser.displayName || otherUser.handle}