Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

change fontSize: 15 to a.text_sm (#7896)

authored by

Samuel Newman and committed by
GitHub
442de4ab 8f3f896a

+5 -10
+1 -6
src/components/PostControls/PostControlButton.tsx
··· 114 114 115 115 return ( 116 116 <Text 117 - style={[ 118 - color, 119 - big ? a.text_md : {fontSize: 15}, 120 - active && a.font_bold, 121 - style, 122 - ]} 117 + style={[color, big ? a.text_md : a.text_sm, active && a.font_bold, style]} 123 118 {...props} 124 119 /> 125 120 )
+2 -2
src/lib/custom-animations/CountWheel.tsx
··· 144 144 <Text 145 145 testID="likeCount" 146 146 style={[ 147 - big ? a.text_md : {fontSize: 15}, 147 + big ? a.text_md : a.text_sm, 148 148 a.user_select_none, 149 149 isLiked 150 150 ? [a.font_bold, s.likeColor] ··· 162 162 aria-disabled={true}> 163 163 <Text 164 164 style={[ 165 - big ? a.text_md : {fontSize: 15}, 165 + big ? a.text_md : a.text_sm, 166 166 a.user_select_none, 167 167 isLiked 168 168 ? [a.font_bold, s.likeColor]
+2 -2
src/lib/custom-animations/CountWheel.web.tsx
··· 90 90 <Text 91 91 testID="likeCount" 92 92 style={[ 93 - big ? a.text_md : {fontSize: 15}, 93 + big ? a.text_md : a.text_sm, 94 94 a.user_select_none, 95 95 isLiked 96 96 ? [a.font_bold, s.likeColor] ··· 107 107 ref={prevCountView}> 108 108 <Text 109 109 style={[ 110 - big ? a.text_md : {fontSize: 15}, 110 + big ? a.text_md : a.text_sm, 111 111 a.user_select_none, 112 112 isLiked 113 113 ? [a.font_bold, s.likeColor]