From 2e70e1df79e535eb542971f3dc180da5c803e1e8 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 4 Sep 2025 16:44:55 -0500 Subject: [PATCH] Reduce space in compact mode --- src/components/PostControls/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/PostControls/index.tsx b/src/components/PostControls/index.tsx index cba5923740..834ad8e7dc 100644 --- a/src/components/PostControls/index.tsx +++ b/src/components/PostControls/index.tsx @@ -188,7 +188,8 @@ let PostControls = ({ } const secondaryControlSpacingStyles = flatten([ - a.gap_xs, + {gap: 0}, // default, we want `gap` to be defined on the resulting object + variant !== 'compact' && a.gap_xs, (big || gtPhone) && a.gap_sm, ])