about summary refs log tree commit diff
path: root/src/view/com/composer/char-progress/CharProgress.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-07-06 20:28:10 -0500
committerGitHub <noreply@github.com>2023-07-06 20:28:10 -0500
commite14c9783e0cea73ada1d20e8a798738c39319315 (patch)
tree41be4e050c1e7cf4ade0e0ff1c66342599618935 /src/view/com/composer/char-progress/CharProgress.tsx
parentf05c2f06d665cb3a9989154fbc82a2b0ea60669a (diff)
downloadvoidsky-e14c9783e0cea73ada1d20e8a798738c39319315.tar.zst
[APP-735] Post language improvements (#982)
* Fix composer character-counter bouncing around UI elements

* Fix composer toolbar padding when keyboard is dismissed on iOS

* Use the full name of the language in the composer footer

* Add headings to the DropdownButton

* Update the composer language control to use a simpler dropdown

* Fix lint

* Add translate link to Post component used in notifications

* Fix lint
Diffstat (limited to 'src/view/com/composer/char-progress/CharProgress.tsx')
-rw-r--r--src/view/com/composer/char-progress/CharProgress.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/composer/char-progress/CharProgress.tsx b/src/view/com/composer/char-progress/CharProgress.tsx
index 6b3b98e47..a3fa78a59 100644
--- a/src/view/com/composer/char-progress/CharProgress.tsx
+++ b/src/view/com/composer/char-progress/CharProgress.tsx
@@ -17,7 +17,7 @@ export function CharProgress({count}: {count: number}) {
   const circleColor = count > DANGER_LENGTH ? '#e60000' : pal.colors.link
   return (
     <>
-      <Text style={[s.mr10, {color: textColor}]}>
+      <Text style={[s.mr10, s.tabularNum, {color: textColor}]}>
         {MAX_GRAPHEME_LENGTH - count}
       </Text>
       <View>