about summary refs log tree commit diff
path: root/src/components/PostControls
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-07-01 23:24:03 +0300
committerGitHub <noreply@github.com>2025-07-01 13:24:03 -0700
commit9fdd98d8b430a072efc19698eb8c4be1a63ecfb4 (patch)
treebe6afc8e934762d14486c071f2b240e8790c77da /src/components/PostControls
parent5f291b5ca8d21cb44f6d32039afdff6f45782012 (diff)
downloadvoidsky-9fdd98d8b430a072efc19698eb8c4be1a63ecfb4.tar.zst
Improve post spacing (#8589)
Diffstat (limited to 'src/components/PostControls')
-rw-r--r--src/components/PostControls/index.tsx9
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}],