Reduce composer font size (#8591)

This commit is contained in:
Samuel Newman
2025-06-30 19:13:14 +03:00
committed by GitHub
parent 130f795dfb
commit 5e20d5ffab
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -836,7 +836,7 @@ let ComposerPost = React.memo(function ComposerPost({
<View style={[a.flex_row, isNative && a.flex_1]}>
<UserAvatar
avatar={currentProfile?.avatar}
size={50}
size={42}
type={currentProfile?.associated?.labeler ? 'labeler' : 'user'}
style={[a.mt_xs]}
/>
+1 -1
View File
@@ -92,7 +92,7 @@ export function ComposerReplyTo({replyTo}: {replyTo: ComposerOptsPostRef}) {
)}
accessibilityHint="">
<PreviewableUserAvatar
size={50}
size={42}
profile={replyTo.author}
moderation={replyTo.moderation?.ui('avatar')}
type={replyTo.author.associated?.labeler ? 'labeler' : 'user'}
@@ -186,7 +186,7 @@ export const TextInput = forwardRef(function TextInputImpl(
const inputTextStyle = React.useMemo(() => {
const style = normalizeTextStyles(
[a.text_xl, a.leading_snug, t.atoms.text],
[a.text_lg, a.leading_snug, t.atoms.text],
{
fontScale: fonts.scaleMultiplier,
fontFamily: fonts.family,