diff options
Diffstat (limited to 'src/view/com/composer/char-progress')
-rw-r--r-- | src/view/com/composer/char-progress/CharProgress.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/view/com/composer/char-progress/CharProgress.tsx b/src/view/com/composer/char-progress/CharProgress.tsx index 1c9327410..c7d9628d6 100644 --- a/src/view/com/composer/char-progress/CharProgress.tsx +++ b/src/view/com/composer/char-progress/CharProgress.tsx @@ -30,7 +30,13 @@ export function CharProgress({ return ( <View style={[a.flex_row, a.align_center, a.justify_between, a.gap_sm, style]}> - <Text style={[{color: textColor}, a.flex_grow, a.text_right, textStyle]}> + <Text + style={[ + {color: textColor, fontVariant: ['tabular-nums']}, + a.flex_grow, + a.text_right, + textStyle, + ]}> {maxLength - count} </Text> {count > maxLength ? ( |