Fix desktop styles a bit

zio/stable
Paul Frazee 2023-12-28 13:41:23 -08:00
parent 47127ce0ab
commit 363929b1a7
1 changed files with 6 additions and 2 deletions

View File

@ -519,7 +519,11 @@ export function SearchScreen(
return (
<View style={{flex: 1}}>
<CenteredView
style={[styles.header, pal.border]}
style={[
styles.header,
pal.border,
isTabletOrDesktop && {paddingTop: 10},
]}
sideBorders={isTabletOrDesktop}>
{isTabletOrMobile && (
<Pressable
@ -600,7 +604,7 @@ export function SearchScreen(
{isFetching ? (
<Loader />
) : (
<ScrollView style={{height: '100%'}}>
<ScrollView style={{height: '100%'}} dataSet={{stableGutters: '1'}}>
{searchResults.length ? (
searchResults.map((item, i) => (
<SearchResultCard