diff options
author | Hailey <me@haileyok.com> | 2024-09-26 21:01:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 21:01:57 -0700 |
commit | c7b48cbdca7f5e5000cdffa0d3307fb2c3aba872 (patch) | |
tree | 3933cda691c7da3c276d6e77c91b827d9cd4b3b1 /src | |
parent | 389e6f15090ed35843f92253a299906df27cf993 (diff) | |
download | voidsky-c7b48cbdca7f5e5000cdffa0d3307fb2c3aba872.tar.zst |
Tweak font size of "Write your reply" (#5513)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/post-thread/PostThreadComposePrompt.tsx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/view/com/post-thread/PostThreadComposePrompt.tsx b/src/view/com/post-thread/PostThreadComposePrompt.tsx index 7586bd976..67981618e 100644 --- a/src/view/com/post-thread/PostThreadComposePrompt.tsx +++ b/src/view/com/post-thread/PostThreadComposePrompt.tsx @@ -63,11 +63,7 @@ export function PostThreadComposePrompt({ avatar={profile?.avatar} type={profile?.associated?.labeler ? 'labeler' : 'user'} /> - <Text - style={[ - isTabletOrDesktop ? a.text_md : a.text_sm, - t.atoms.text_contrast_medium, - ]}> + <Text style={[a.text_md, t.atoms.text_contrast_medium]}> <Trans>Write your reply</Trans> </Text> </View> |