diff options
Diffstat (limited to 'src/components/ProgressGuide')
-rw-r--r-- | src/components/ProgressGuide/List.tsx | 2 | ||||
-rw-r--r-- | src/components/ProgressGuide/Task.tsx | 4 | ||||
-rw-r--r-- | src/components/ProgressGuide/Toast.tsx | 2 |
3 files changed, 3 insertions, 5 deletions
diff --git a/src/components/ProgressGuide/List.tsx b/src/components/ProgressGuide/List.tsx index f68445d2b..d0fd55d9c 100644 --- a/src/components/ProgressGuide/List.tsx +++ b/src/components/ProgressGuide/List.tsx @@ -26,7 +26,7 @@ export function ProgressGuideList({style}: {style?: StyleProp<ViewStyle>}) { <Text style={[ t.atoms.text_contrast_medium, - a.font_semibold, + a.font_bold, a.text_sm, {textTransform: 'uppercase'}, ]}> diff --git a/src/components/ProgressGuide/Task.tsx b/src/components/ProgressGuide/Task.tsx index a83715a42..f2ceba52a 100644 --- a/src/components/ProgressGuide/Task.tsx +++ b/src/components/ProgressGuide/Task.tsx @@ -35,9 +35,7 @@ export function ProgressGuideTask({ )} <View style={[a.flex_col, a.gap_2xs, {marginTop: -2}]}> - <Text style={[a.text_sm, a.font_semibold, a.leading_tight]}> - {title} - </Text> + <Text style={[a.text_sm, a.font_bold, a.leading_tight]}>{title}</Text> {subtitle && ( <Text style={[a.text_sm, t.atoms.text_contrast_medium, a.leading_tight]}> diff --git a/src/components/ProgressGuide/Toast.tsx b/src/components/ProgressGuide/Toast.tsx index 346312af5..69e008260 100644 --- a/src/components/ProgressGuide/Toast.tsx +++ b/src/components/ProgressGuide/Toast.tsx @@ -154,7 +154,7 @@ export const ProgressGuideToast = React.forwardRef< ref={animatedCheckRef} /> <View> - <Text style={[a.text_md, a.font_semibold]}>{title}</Text> + <Text style={[a.text_md, a.font_bold]}>{title}</Text> {subtitle && ( <Text style={[a.text_sm, t.atoms.text_contrast_medium]}> {subtitle} |