diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-05-30 09:44:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 09:44:49 +0300 |
commit | d92036f2c576d33964b1141ac63888bdc2fb1ca4 (patch) | |
tree | 7dab0a8de593f575f628a3cbd2913afe7a387c9e /src/view/com/util/post-ctrls/RepostButton.tsx | |
parent | c4abaa1abcde54f15133b2e2b546f0d54a3a1d07 (diff) | |
download | voidsky-d92036f2c576d33964b1141ac63888bdc2fb1ca4.tar.zst |
Post controls update followup (#4276)
* rm legacy repost modal * make repost button transparent * reduce gap between post and ctrls * remove old repost modal on web
Diffstat (limited to 'src/view/com/util/post-ctrls/RepostButton.tsx')
-rw-r--r-- | src/view/com/util/post-ctrls/RepostButton.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/view/com/util/post-ctrls/RepostButton.tsx b/src/view/com/util/post-ctrls/RepostButton.tsx index 1124cb405..ebf3357f3 100644 --- a/src/view/com/util/post-ctrls/RepostButton.tsx +++ b/src/view/com/util/post-ctrls/RepostButton.tsx @@ -47,7 +47,13 @@ let RepostButton = ({ onPress={() => { requireAuth(() => dialogControl.open()) }} - style={[a.flex_row, a.align_center, a.gap_xs, {padding: 5}]} + style={[ + a.flex_row, + a.align_center, + a.gap_xs, + a.bg_transparent, + {padding: 5}, + ]} hoverStyle={t.atoms.bg_contrast_25} label={`${ isReposted |