diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-06-06 13:08:30 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-06 03:08:30 -0700 |
commit | 442de4ab7ae210fb0fa857e2d5783207288bbe99 (patch) | |
tree | af00c726b14f0e7ff23f4617ea18507ce3cf83ba /src/components/PostControls/PostControlButton.tsx | |
parent | 8f3f896a4af13d08a0869fd11b068f56c5ee57d6 (diff) | |
download | voidsky-442de4ab7ae210fb0fa857e2d5783207288bbe99.tar.zst |
change fontSize: 15 to a.text_sm (#7896)
Diffstat (limited to 'src/components/PostControls/PostControlButton.tsx')
-rw-r--r-- | src/components/PostControls/PostControlButton.tsx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/components/PostControls/PostControlButton.tsx b/src/components/PostControls/PostControlButton.tsx index 1585d429d..f41f95049 100644 --- a/src/components/PostControls/PostControlButton.tsx +++ b/src/components/PostControls/PostControlButton.tsx @@ -114,12 +114,7 @@ export function PostControlButtonText({style, ...props}: TextProps) { return ( <Text - style={[ - color, - big ? a.text_md : {fontSize: 15}, - active && a.font_bold, - style, - ]} + style={[color, big ? a.text_md : a.text_sm, active && a.font_bold, style]} {...props} /> ) |