diff options
Diffstat (limited to 'src/view/screens/Lists.tsx')
-rw-r--r-- | src/view/screens/Lists.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/view/screens/Lists.tsx b/src/view/screens/Lists.tsx index 0dd2febcb..12ea6f48b 100644 --- a/src/view/screens/Lists.tsx +++ b/src/view/screens/Lists.tsx @@ -52,12 +52,12 @@ export function ListsScreen({}: Props) { <View style={s.hContentRegion} testID="listsScreen"> <SimpleViewHeader showBackButton={isMobile} - style={ - !isMobile && [ - pal.border, - {borderLeftWidth: hairlineWidth, borderRightWidth: hairlineWidth}, - ] - }> + style={[ + pal.border, + isMobile + ? {borderBottomWidth: hairlineWidth} + : {borderLeftWidth: hairlineWidth, borderRightWidth: hairlineWidth}, + ]}> <View style={{flex: 1}}> <Text type="title-lg" style={[pal.text, {fontWeight: 'bold'}]}> <Trans>User Lists</Trans> |