diff options
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/Lists.tsx | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/components/Lists.tsx b/src/components/Lists.tsx index e706e101f..beeb55476 100644 --- a/src/components/Lists.tsx +++ b/src/components/Lists.tsx @@ -122,8 +122,16 @@ export function ListHeaderDesktop({ if (!gtTablet) return null return ( - <View style={[a.w_full, a.py_lg, a.px_xl, a.gap_xs]}> - <Text style={[a.text_3xl, a.font_bold]}>{title}</Text> + <View + style={[ + a.w_full, + a.py_sm, + a.px_xl, + a.gap_xs, + a.justify_center, + {minHeight: 50}, + ]}> + <Text style={[a.text_2xl, a.font_bold]}>{title}</Text> {subtitle ? ( <Text style={[a.text_md, t.atoms.text_contrast_medium]}> {subtitle} |