Add lil hover to View More
This commit is contained in:
@@ -196,7 +196,16 @@ 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}) => (
|
||||||
|
<View
|
||||||
|
style={[
|
||||||
|
a.flex_row,
|
||||||
|
a.align_center,
|
||||||
|
a.gap_md,
|
||||||
|
{
|
||||||
|
opacity: pressed ? 0.6 : 1,
|
||||||
|
},
|
||||||
|
]}>
|
||||||
<Text style={[a.text_md]}>
|
<Text style={[a.text_md]}>
|
||||||
<Trans>View more</Trans>
|
<Trans>View more</Trans>
|
||||||
</Text>
|
</Text>
|
||||||
@@ -214,6 +223,7 @@ function VideoCards({
|
|||||||
<ButtonIcon icon={ChevronRight} />
|
<ButtonIcon icon={ChevronRight} />
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
)}
|
||||||
</Link>
|
</Link>
|
||||||
</View>
|
</View>
|
||||||
</>
|
</>
|
||||||
|
|||||||
@@ -236,7 +236,16 @@ 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}) => (
|
||||||
|
<View
|
||||||
|
style={[
|
||||||
|
a.flex_row,
|
||||||
|
a.align_center,
|
||||||
|
a.gap_md,
|
||||||
|
{
|
||||||
|
opacity: pressed ? 0.6 : 1,
|
||||||
|
},
|
||||||
|
]}>
|
||||||
<Text style={[a.text_md]}>
|
<Text style={[a.text_md]}>
|
||||||
<Trans>View more</Trans>
|
<Trans>View more</Trans>
|
||||||
</Text>
|
</Text>
|
||||||
@@ -254,6 +263,7 @@ function VideoCards({
|
|||||||
<ButtonIcon icon={ChevronRight} />
|
<ButtonIcon icon={ChevronRight} />
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
)}
|
||||||
</Link>
|
</Link>
|
||||||
</View>
|
</View>
|
||||||
</>
|
</>
|
||||||
|
|||||||
Reference in New Issue
Block a user