diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-08-15 18:33:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-15 08:33:23 -0700 |
commit | f2892779da97d18d96125a66d90a3d31fd81fb2d (patch) | |
tree | 1fd7a651a022c51c0967f166848b82a83ca434c6 /src/components | |
parent | 5ca665467e9cbedd78f21df76db8cfde8eaa66b4 (diff) | |
download | voidsky-f2892779da97d18d96125a66d90a3d31fd81fb2d.tar.zst |
Use medium font weight in a few places (#8848)
* medium font toasts * medium font tabs * medium font trending pill
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/ProgressGuide/FollowDialog.tsx | 2 | ||||
-rw-r--r-- | src/components/Toast/Toast.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ProgressGuide/FollowDialog.tsx b/src/components/ProgressGuide/FollowDialog.tsx index a8c64935a..20ebb0abf 100644 --- a/src/components/ProgressGuide/FollowDialog.tsx +++ b/src/components/ProgressGuide/FollowDialog.tsx @@ -539,7 +539,7 @@ let Tab = ({ ]}> <Text style={[ - /* TODO: medium weight */ + a.font_medium, active || hovered || pressed || focused ? t.atoms.text : t.atoms.text_contrast_medium, diff --git a/src/components/Toast/Toast.tsx b/src/components/Toast/Toast.tsx index 28220cb8d..4d782597d 100644 --- a/src/components/Toast/Toast.tsx +++ b/src/components/Toast/Toast.tsx @@ -92,7 +92,7 @@ export function ToastText({children}: {children: React.ReactNode}) { selectable={false} style={[ a.text_md, - a.font_bold, + a.font_medium, a.leading_snug, a.pointer_events_none, { |