about summary refs log tree commit diff
path: root/src/components/Prompt.tsx
diff options
context:
space:
mode:
authorEric Bailey <git@esb.lol>2024-09-16 16:52:28 -0500
committerGitHub <noreply@github.com>2024-09-16 14:52:28 -0700
commitb69fd23456485d22c24b51da833d2707c718d61e (patch)
treebeb5f1d17aa9fb6eae314a6714c4913be39dcf5a /src/components/Prompt.tsx
parent8daf6b78688ca20326a79fa9c7ca1cbd945786e1 (diff)
downloadvoidsky-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.tsx4
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>
   )