Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use medium font weight in a few places (#8848)

* medium font toasts

* medium font tabs

* medium font trending pill

authored by

Samuel Newman and committed by
GitHub
f2892779 5ca66546

+5 -8
+1 -1
src/components/ProgressGuide/FollowDialog.tsx
··· 539 539 ]}> 540 540 <Text 541 541 style={[ 542 - /* TODO: medium weight */ 542 + a.font_medium, 543 543 active || hovered || pressed || focused 544 544 ? t.atoms.text 545 545 : t.atoms.text_contrast_medium,
+1 -1
src/components/Toast/Toast.tsx
··· 92 92 selectable={false} 93 93 style={[ 94 94 a.text_md, 95 - a.font_bold, 95 + a.font_medium, 96 96 a.leading_snug, 97 97 a.pointer_events_none, 98 98 {
+1 -1
src/screens/Search/modules/ExploreSuggestedAccounts.tsx
··· 147 147 ]}> 148 148 <Text 149 149 style={[ 150 - /* TODO: medium weight */ 150 + a.font_medium, 151 151 active || hovered || pressed || focused 152 152 ? t.atoms.text 153 153 : t.atoms.text_contrast_medium,
+2 -5
src/screens/Search/modules/ExploreTrendingTopics.tsx
··· 163 163 a.align_center, 164 164 a.gap_xs, 165 165 a.rounded_full, 166 - a.px_sm, 167 - { 168 - height: 28, 169 - }, 166 + {height: 28, paddingHorizontal: 10}, 170 167 ] 171 168 172 169 let Icon: React.ComponentType<SVGIconProps> | null = null ··· 218 215 return ( 219 216 <View style={[pillStyles, {backgroundColor}]}> 220 217 {Icon && <Icon size="sm" style={{color}} />} 221 - <Text style={[a.text_sm, {color}]}>{text}</Text> 218 + <Text style={[a.text_sm, a.font_medium, {color}]}>{text}</Text> 222 219 </View> 223 220 ) 224 221 }