Add lil hover to View More
This commit is contained in:
@@ -196,24 +196,34 @@ function VideoCards({
|
|||||||
a.rounded_md,
|
a.rounded_md,
|
||||||
t.atoms.bg,
|
t.atoms.bg,
|
||||||
]}>
|
]}>
|
||||||
<View style={[a.flex_row, a.align_center, a.gap_md]}>
|
{({pressed}) => (
|
||||||
<Text style={[a.text_md]}>
|
|
||||||
<Trans>View more</Trans>
|
|
||||||
</Text>
|
|
||||||
<View
|
<View
|
||||||
style={[
|
style={[
|
||||||
|
a.flex_row,
|
||||||
a.align_center,
|
a.align_center,
|
||||||
a.justify_center,
|
a.gap_md,
|
||||||
a.rounded_full,
|
|
||||||
{
|
{
|
||||||
width: 34,
|
opacity: pressed ? 0.6 : 1,
|
||||||
height: 34,
|
|
||||||
backgroundColor: t.palette.primary_500,
|
|
||||||
},
|
},
|
||||||
]}>
|
]}>
|
||||||
<ButtonIcon icon={ChevronRight} />
|
<Text style={[a.text_md]}>
|
||||||
|
<Trans>View more</Trans>
|
||||||
|
</Text>
|
||||||
|
<View
|
||||||
|
style={[
|
||||||
|
a.align_center,
|
||||||
|
a.justify_center,
|
||||||
|
a.rounded_full,
|
||||||
|
{
|
||||||
|
width: 34,
|
||||||
|
height: 34,
|
||||||
|
backgroundColor: t.palette.primary_500,
|
||||||
|
},
|
||||||
|
]}>
|
||||||
|
<ButtonIcon icon={ChevronRight} />
|
||||||
|
</View>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
)}
|
||||||
</Link>
|
</Link>
|
||||||
</View>
|
</View>
|
||||||
</>
|
</>
|
||||||
|
|||||||
@@ -236,24 +236,34 @@ function VideoCards({
|
|||||||
a.rounded_md,
|
a.rounded_md,
|
||||||
t.atoms.bg_contrast_25,
|
t.atoms.bg_contrast_25,
|
||||||
]}>
|
]}>
|
||||||
<View style={[a.flex_row, a.align_center, a.gap_md]}>
|
{({pressed}) => (
|
||||||
<Text style={[a.text_md]}>
|
|
||||||
<Trans>View more</Trans>
|
|
||||||
</Text>
|
|
||||||
<View
|
<View
|
||||||
style={[
|
style={[
|
||||||
|
a.flex_row,
|
||||||
a.align_center,
|
a.align_center,
|
||||||
a.justify_center,
|
a.gap_md,
|
||||||
a.rounded_full,
|
|
||||||
{
|
{
|
||||||
width: 34,
|
opacity: pressed ? 0.6 : 1,
|
||||||
height: 34,
|
|
||||||
backgroundColor: t.palette.primary_500,
|
|
||||||
},
|
},
|
||||||
]}>
|
]}>
|
||||||
<ButtonIcon icon={ChevronRight} />
|
<Text style={[a.text_md]}>
|
||||||
|
<Trans>View more</Trans>
|
||||||
|
</Text>
|
||||||
|
<View
|
||||||
|
style={[
|
||||||
|
a.align_center,
|
||||||
|
a.justify_center,
|
||||||
|
a.rounded_full,
|
||||||
|
{
|
||||||
|
width: 34,
|
||||||
|
height: 34,
|
||||||
|
backgroundColor: t.palette.primary_500,
|
||||||
|
},
|
||||||
|
]}>
|
||||||
|
<ButtonIcon icon={ChevronRight} />
|
||||||
|
</View>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
)}
|
||||||
</Link>
|
</Link>
|
||||||
</View>
|
</View>
|
||||||
</>
|
</>
|
||||||
|
|||||||
Reference in New Issue
Block a user