diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/PostControls/index.tsx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/PostControls/index.tsx b/src/components/PostControls/index.tsx index f871cf356..16330a682 100644 --- a/src/components/PostControls/index.tsx +++ b/src/components/PostControls/index.tsx @@ -185,7 +185,14 @@ let PostControls = ({ } return ( - <View style={[a.flex_row, a.justify_between, a.align_center, style]}> + <View + style={[ + a.flex_row, + a.justify_between, + a.align_center, + !big && a.pt_2xs, + style, + ]}> <View style={[ big ? a.align_center : [a.flex_1, a.align_start, {marginLeft: -6}], |