diff options
author | Eric Bailey <git@esb.lol> | 2024-02-09 11:52:32 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-09 09:52:32 -0800 |
commit | d6235453c9b5f297b95edd58864fe26268239318 (patch) | |
tree | e33103843603eda398b27231eada8e0c445509f2 /src/screens/Onboarding/Layout.tsx | |
parent | 43b447e5f4345bd6c3a6957cb5aa1587324799e8 (diff) | |
download | voidsky-d6235453c9b5f297b95edd58864fe26268239318.tar.zst |
Design system tweaks (#2822)
* Tweak palette, theme naming, update usages * Update Typography, replace the few usages
Diffstat (limited to 'src/screens/Onboarding/Layout.tsx')
-rw-r--r-- | src/screens/Onboarding/Layout.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/screens/Onboarding/Layout.tsx b/src/screens/Onboarding/Layout.tsx index b9683999f..d887c0820 100644 --- a/src/screens/Onboarding/Layout.tsx +++ b/src/screens/Onboarding/Layout.tsx @@ -165,7 +165,7 @@ export function Layout({children}: React.PropsWithChildren<{}>) { isWeb ? a.fixed : a.absolute, {bottom: 0, left: 0, right: 0}, t.atoms.bg, - t.atoms.border, + t.atoms.border_contrast_low, a.border_t, a.align_center, gtMobile ? a.px_5xl : a.px_xl, @@ -227,5 +227,7 @@ export function Description({ style, }: React.PropsWithChildren<TextStyleProp>) { const t = useTheme() - return <P style={[t.atoms.text_contrast_700, flatten(style)]}>{children}</P> + return ( + <P style={[t.atoms.text_contrast_medium, flatten(style)]}>{children}</P> + ) } |