From 48623b386bffb6112278d2d283bf9cb012efc676 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 3 Dec 2024 12:23:20 -0600 Subject: [PATCH] Allow two lines, fix wrapping --- src/components/Layout/Header/index.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/components/Layout/Header/index.tsx b/src/components/Layout/Header/index.tsx index 9d8edbc036..aa532fc4d5 100644 --- a/src/components/Layout/Header/index.tsx +++ b/src/components/Layout/Header/index.tsx @@ -116,8 +116,14 @@ export function TitleText({children}: {children: React.ReactNode}) { const {gtMobile} = useBreakpoints() return ( + style={[ + a.text_lg, + a.font_heavy, + a.leading_tight, + a.text_center, + gtMobile && [a.text_xl], + ]} + numberOfLines={2}> {children} )