style(tv): align actor name weight and role size/weight in TVActorCard

This commit is contained in:
Fredrik Burmester
2026-05-27 09:57:12 +02:00
parent 2486b2c069
commit df16ea9de9

View File

@@ -87,7 +87,7 @@ export const TVActorCard = React.forwardRef<View, TVActorCardProps>(
<Text <Text
style={{ style={{
fontSize: typography.callout, fontSize: typography.callout,
fontWeight: "600", fontWeight: "500",
color: focused ? "#fff" : "rgba(255,255,255,0.9)", color: focused ? "#fff" : "rgba(255,255,255,0.9)",
textAlign: "center", textAlign: "center",
marginBottom: scaleSize(4), marginBottom: scaleSize(4),
@@ -100,11 +100,12 @@ export const TVActorCard = React.forwardRef<View, TVActorCardProps>(
{person.Role && ( {person.Role && (
<Text <Text
style={{ style={{
fontSize: typography.callout * 0.8, fontSize: typography.callout,
color: focused color: focused
? "rgba(255,255,255,0.8)" ? "rgba(255,255,255,0.8)"
: "rgba(255,255,255,0.5)", : "rgba(255,255,255,0.5)",
textAlign: "center", textAlign: "center",
fontWeight: "500",
}} }}
numberOfLines={2} numberOfLines={2}
> >