Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client

Reduce composer font size (#8591)

authored by samuel.fm and committed by

GitHub 5e20d5ff 130f795d

+3 -3
+1 -1
src/view/com/composer/Composer.tsx
··· 836 836 <View style={[a.flex_row, isNative && a.flex_1]}> 837 837 <UserAvatar 838 838 avatar={currentProfile?.avatar} 839 - size={50} 839 + size={42} 840 840 type={currentProfile?.associated?.labeler ? 'labeler' : 'user'} 841 841 style={[a.mt_xs]} 842 842 />
+1 -1
src/view/com/composer/ComposerReplyTo.tsx
··· 92 92 )} 93 93 accessibilityHint=""> 94 94 <PreviewableUserAvatar 95 - size={50} 95 + size={42} 96 96 profile={replyTo.author} 97 97 moderation={replyTo.moderation?.ui('avatar')} 98 98 type={replyTo.author.associated?.labeler ? 'labeler' : 'user'}
+1 -1
src/view/com/composer/text-input/TextInput.tsx
··· 186 186 187 187 const inputTextStyle = React.useMemo(() => { 188 188 const style = normalizeTextStyles( 189 - [a.text_xl, a.leading_snug, t.atoms.text], 189 + [a.text_lg, a.leading_snug, t.atoms.text], 190 190 { 191 191 fontScale: fonts.scaleMultiplier, 192 192 fontFamily: fonts.family,