Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions src/components/PostControls/PostControlButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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}
/>
)
Expand Down
4 changes: 2 additions & 2 deletions src/lib/custom-animations/CountWheel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export function CountWheel({
<Text
testID="likeCount"
style={[
big ? a.text_md : {fontSize: 15},
big ? a.text_md : a.text_sm,
a.user_select_none,
isLiked
? [a.font_bold, s.likeColor]
Expand All @@ -162,7 +162,7 @@ export function CountWheel({
aria-disabled={true}>
<Text
style={[
big ? a.text_md : {fontSize: 15},
big ? a.text_md : a.text_sm,
a.user_select_none,
isLiked
? [a.font_bold, s.likeColor]
Expand Down
4 changes: 2 additions & 2 deletions src/lib/custom-animations/CountWheel.web.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function CountWheel({
<Text
testID="likeCount"
style={[
big ? a.text_md : {fontSize: 15},
big ? a.text_md : a.text_sm,
a.user_select_none,
isLiked
? [a.font_bold, s.likeColor]
Expand All @@ -107,7 +107,7 @@ export function CountWheel({
ref={prevCountView}>
<Text
style={[
big ? a.text_md : {fontSize: 15},
big ? a.text_md : a.text_sm,
a.user_select_none,
isLiked
? [a.font_bold, s.likeColor]
Expand Down