about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-12-28 13:41:23 -0800
committerPaul Frazee <pfrazee@gmail.com>2023-12-28 13:41:23 -0800
commit363929b1a7defaff8e5224acfcb84cdce4fd1b9a (patch)
tree30e1698fc87d4f4be1d9d940da91cf65da7c441f /src
parent47127ce0abf48f6c6d85e04be6eb04ca33804168 (diff)
downloadvoidsky-363929b1a7defaff8e5224acfcb84cdce4fd1b9a.tar.zst
Fix desktop styles a bit
Diffstat (limited to 'src')
-rw-r--r--src/view/screens/Search/Search.tsx8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx
index d1fe700b7..965ad2b7e 100644
--- a/src/view/screens/Search/Search.tsx
+++ b/src/view/screens/Search/Search.tsx
@@ -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