diff options
author | Eric Bailey <git@esb.lol> | 2024-09-16 16:52:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-16 14:52:28 -0700 |
commit | b69fd23456485d22c24b51da833d2707c718d61e (patch) | |
tree | beb5f1d17aa9fb6eae314a6714c4913be39dcf5a /src/components/Prompt.tsx | |
parent | 8daf6b78688ca20326a79fa9c7ca1cbd945786e1 (diff) | |
download | voidsky-b69fd23456485d22c24b51da833d2707c718d61e.tar.zst |
Milly tweaks (#5365)
Co-authored-by: Hailey <me@haileyok.com>
Diffstat (limited to 'src/components/Prompt.tsx')
-rw-r--r-- | src/components/Prompt.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/Prompt.tsx b/src/components/Prompt.tsx index 86cb5c315..7836bbef9 100644 --- a/src/components/Prompt.tsx +++ b/src/components/Prompt.tsx @@ -59,7 +59,9 @@ export function Outer({ export function TitleText({children}: React.PropsWithChildren<{}>) { const {titleId} = React.useContext(Context) return ( - <Text nativeID={titleId} style={[a.text_2xl, a.font_bold, a.pb_sm]}> + <Text + nativeID={titleId} + style={[a.text_2xl, a.font_bold, a.pb_sm, a.leading_snug]}> {children} </Text> ) |