Two UI tweaks after recent updates (#2647)
* Readd the top border to the highlighted post when a reply (revert #2628) * Readd right pad to post controls
This commit is contained in:
parent
6149437c05
commit
b629fbdbb9
3 changed files with 16 additions and 27 deletions
|
@ -88,7 +88,7 @@ export function PostLoadingPlaceholder({
|
|||
strokeWidth={3}
|
||||
/>
|
||||
</View>
|
||||
<View style={{width: 30, height: 30}} />
|
||||
<View style={styles.postCtrl} />
|
||||
</View>
|
||||
</View>
|
||||
</View>
|
||||
|
|
|
@ -149,7 +149,7 @@ let PostCtrls = ({
|
|||
) : undefined}
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
<View style={[styles.ctrl]}>
|
||||
<View style={styles.ctrl}>
|
||||
<RepostButton
|
||||
big={big}
|
||||
isReposted={!!post.viewer?.repost}
|
||||
|
@ -194,19 +194,19 @@ let PostCtrls = ({
|
|||
</TouchableOpacity>
|
||||
</View>
|
||||
{big ? undefined : (
|
||||
<PostDropdownBtn
|
||||
testID="postDropdownBtn"
|
||||
postAuthor={post.author}
|
||||
postCid={post.cid}
|
||||
postUri={post.uri}
|
||||
record={record}
|
||||
richText={richText}
|
||||
showAppealLabelItem={showAppealLabelItem}
|
||||
style={styles.btnPad}
|
||||
/>
|
||||
<View style={styles.ctrl}>
|
||||
<PostDropdownBtn
|
||||
testID="postDropdownBtn"
|
||||
postAuthor={post.author}
|
||||
postCid={post.cid}
|
||||
postUri={post.uri}
|
||||
record={record}
|
||||
richText={richText}
|
||||
showAppealLabelItem={showAppealLabelItem}
|
||||
style={styles.btnPad}
|
||||
/>
|
||||
</View>
|
||||
)}
|
||||
{/* used for adding pad to the right side */}
|
||||
<View />
|
||||
</View>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue