diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-07-01 23:24:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-01 13:24:03 -0700 |
commit | 9fdd98d8b430a072efc19698eb8c4be1a63ecfb4 (patch) | |
tree | be6afc8e934762d14486c071f2b240e8790c77da /src/components | |
parent | 5f291b5ca8d21cb44f6d32039afdff6f45782012 (diff) | |
download | voidsky-9fdd98d8b430a072efc19698eb8c4be1a63ecfb4.tar.zst |
Improve post spacing (#8589)
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}], |