Bluesky app fork with some witchin' additions 💫

tweak styles of composer prompt (#9524)

authored by samuel.fm and committed by GitHub aa139554 caa02db8

Changed files
+5 -7
src
view
com
+5 -7
src/view/com/feeds/ComposerPrompt.tsx
··· 1 import {useCallback, useState} from 'react' 2 import {Keyboard, Pressable, View} from 'react-native' 3 - import {msg} from '@lingui/macro' 4 import {useLingui} from '@lingui/react' 5 6 import {useOpenComposer} from '#/lib/hooks/useOpenComposer' ··· 168 <SubtleHover hover={hover} /> 169 <UserAvatar 170 avatar={profile.avatar} 171 - size={40} 172 type={profile.associated?.labeler ? 'labeler' : 'user'} 173 /> 174 <View ··· 184 ]}> 185 <Text 186 style={[ 187 - t.atoms.text_contrast_low, 188 a.text_md, 189 - { 190 - includeFontPadding: false, 191 - }, 192 ]}> 193 - {_(msg`What's up?`)} 194 </Text> 195 <View style={[a.flex_row, a.gap_md]}> 196 {isNative && (
··· 1 import {useCallback, useState} from 'react' 2 import {Keyboard, Pressable, View} from 'react-native' 3 + import {msg, Trans} from '@lingui/macro' 4 import {useLingui} from '@lingui/react' 5 6 import {useOpenComposer} from '#/lib/hooks/useOpenComposer' ··· 168 <SubtleHover hover={hover} /> 169 <UserAvatar 170 avatar={profile.avatar} 171 + size={42} 172 type={profile.associated?.labeler ? 'labeler' : 'user'} 173 /> 174 <View ··· 184 ]}> 185 <Text 186 style={[ 187 + t.atoms.text_contrast_medium, 188 a.text_md, 189 + {includeFontPadding: false}, 190 ]}> 191 + <Trans>What's up?</Trans> 192 </Text> 193 <View style={[a.flex_row, a.gap_md]}> 194 {isNative && (