about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-06-30 19:13:14 +0300
committerGitHub <noreply@github.com>2025-06-30 19:13:14 +0300
commit5e20d5ffaba1c33e85e5e1d84bb4dea93ed249e9 (patch)
tree11fb45ce2e76cfdfd3a6615c48ed307f921ab8c4 /src
parent130f795dfb5622acfe06b80ef718a7678088a39a (diff)
downloadvoidsky-5e20d5ffaba1c33e85e5e1d84bb4dea93ed249e9.tar.zst
Reduce composer font size (#8591)
Diffstat (limited to 'src')
-rw-r--r--src/view/com/composer/Composer.tsx2
-rw-r--r--src/view/com/composer/ComposerReplyTo.tsx2
-rw-r--r--src/view/com/composer/text-input/TextInput.tsx2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx
index cc2859be9..492b9074f 100644
--- a/src/view/com/composer/Composer.tsx
+++ b/src/view/com/composer/Composer.tsx
@@ -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]}
         />
diff --git a/src/view/com/composer/ComposerReplyTo.tsx b/src/view/com/composer/ComposerReplyTo.tsx
index acab84f65..5d95a9b61 100644
--- a/src/view/com/composer/ComposerReplyTo.tsx
+++ b/src/view/com/composer/ComposerReplyTo.tsx
@@ -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'}
diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx
index f927015af..27b769c4e 100644
--- a/src/view/com/composer/text-input/TextInput.tsx
+++ b/src/view/com/composer/text-input/TextInput.tsx
@@ -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,