about summary refs log tree commit diff
path: root/src/components/PostControls
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-06-06 13:08:30 +0300
committerGitHub <noreply@github.com>2025-06-06 03:08:30 -0700
commit442de4ab7ae210fb0fa857e2d5783207288bbe99 (patch)
treeaf00c726b14f0e7ff23f4617ea18507ce3cf83ba /src/components/PostControls
parent8f3f896a4af13d08a0869fd11b068f56c5ee57d6 (diff)
downloadvoidsky-442de4ab7ae210fb0fa857e2d5783207288bbe99.tar.zst
change fontSize: 15 to a.text_sm (#7896)
Diffstat (limited to 'src/components/PostControls')
-rw-r--r--src/components/PostControls/PostControlButton.tsx7
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}
     />
   )