Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -63,12 +63,7 @@ const useStyles = makeStyles(({ spacing, palette }) => ({
},
button: {
height: spacing(6),
width: spacing(6),
alignItems: 'center',
justifyContent: 'center'
},
buttonMargin: {
marginRight: spacing(6)
width: spacing(6)
}
}))

Expand DownExpand Up@@ -99,23 +94,21 @@ export const LineupTileActionButtons = ({
const showPublishButton = isOwner && isUnlisted

const repostButton = (
<View style={[styles.button, styles.buttonMargin]}>
<RepostButton
onPress={onPressRepost}
isActive={hasReposted}
isDisabled={disabled}
/>
</View>
<RepostButton
wrapperStyle={styles.button}
onPress={onPressRepost}
isActive={hasReposted}
isDisabled={disabled}
/>
)

const favoriteButton = (
<View style={[styles.button, styles.buttonMargin]}>
<FavoriteButton
onPress={onPressSave}
isActive={hasSaved}
isDisabled={disabled}
/>
</View>
<FavoriteButton
wrapperStyle={styles.button}
onPress={onPressSave}
isActive={hasSaved}
isDisabled={disabled}
/>
)

const shareButton = (
Expand DownExpand Up@@ -183,7 +176,7 @@ export const LineupTileActionButtons = ({
} else {
content = (
<Flex direction='row' justifyContent='space-between' w='100%' mt='s'>
<Flex gap='2xl' direction='row'>
<Flex gap='2xl' direction='row' alignItems='center'>
{showGatedAccessStatus && contentType && streamConditions != null ? (
<LineupTileAccessStatus
contentId={contentId}
Expand Down