diff options
author | Samuel Newman <mozzius@protonmail.com> | 2024-05-30 03:25:11 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 01:25:11 +0100 |
commit | 165feedb866034452807eb87b39efe3ba780184f (patch) | |
tree | 768d026477ea1db382f5786f4d5028c041545a2d /src/view/com/post-thread/PostThreadItem.tsx | |
parent | 4d39ef2e19632eddc1a31a5b41078f6e40b92fbc (diff) | |
download | voidsky-165feedb866034452807eb87b39efe3ba780184f.tar.zst |
Use ALF for post controls (#3400)
* alf the repost dropdown on web + import icons * alf like icon * convert other post controls * add missing padding to share button * refine buttons and use better icons * revert buttonicon changes * remove ButtonIcon and ButtonText from repost dialog * use 15px font size when not big * reduce size and use contrast_25 * add hover state to logged out view * add `userSelect: 'none'` to buttons * use width rather than height * fix quote close behaviour * prettier * Fix Esc on repost * Use new icons for placeholder * Fix placeholder --------- Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
Diffstat (limited to 'src/view/com/post-thread/PostThreadItem.tsx')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 548b73af6..0ff040b9c 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -367,7 +367,7 @@ let PostThreadItemLoaded = ({ ) : null} </View> ) : null} - <View style={[s.pl10, s.pr10, s.pb5]}> + <View style={[s.pl10, s.pr10]}> <PostCtrls big post={post} @@ -733,7 +733,7 @@ const styles = StyleSheet.create({ borderTopWidth: 1, borderBottomWidth: 1, marginTop: 5, - marginBottom: 15, + marginBottom: 10, }, expandedInfoItem: { marginRight: 10, |