fix(pdf): add flex to skill name to participate in layout sizing (#3253)

This commit is contained in:
Diego Vega Centeno
2026-07-27 13:39:14 +02:00
committed by GitHub
parent 34c03b1f73
commit e34e7be6e0
@@ -664,7 +664,7 @@ const SkillsSection = ({ sectionId = "skills", sectionData }: ItemSectionProps<S
<SectionItemHeader>
<View style={composeStyles(inlineStyle)}>
<Icon name={item.icon as IconName} />
<Bold>{item.name}</Bold>
<Bold style={{ flex: 1 }}>{item.name}</Bold>
</View>
</SectionItemHeader>