diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-06-30 19:13:14 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-30 19:13:14 +0300 |
commit | 5e20d5ffaba1c33e85e5e1d84bb4dea93ed249e9 (patch) | |
tree | 11fb45ce2e76cfdfd3a6615c48ed307f921ab8c4 /src/view/com/composer/text-input | |
parent | 130f795dfb5622acfe06b80ef718a7678088a39a (diff) | |
download | voidsky-5e20d5ffaba1c33e85e5e1d84bb4dea93ed249e9.tar.zst |
Reduce composer font size (#8591)
Diffstat (limited to 'src/view/com/composer/text-input')
-rw-r--r-- | src/view/com/composer/text-input/TextInput.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
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, |