about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-03-14 17:35:58 -0500
committerPaul Frazee <pfrazee@gmail.com>2023-03-14 17:35:58 -0500
commit94741cddedaa9c923f37b7cc11d5a2cbab81ca44 (patch)
tree4d0a3f792260d64372c830ec4ffd0a150304bc1c /src
parent8d2e649b4dae4523d9c0ac36d5dfd31409447be4 (diff)
downloadvoidsky-94741cddedaa9c923f37b7cc11d5a2cbab81ca44.tar.zst
Temporary hackfix for desktop search
Diffstat (limited to 'src')
-rw-r--r--src/view/shell/desktop/Search.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view/shell/desktop/Search.tsx b/src/view/shell/desktop/Search.tsx
index 7c96dbac2..0ae1c1ad9 100644
--- a/src/view/shell/desktop/Search.tsx
+++ b/src/view/shell/desktop/Search.tsx
@@ -35,7 +35,7 @@ export const DesktopSearch = observer(function DesktopSearch() {
   }
 
   return (
-    <View style={styles.container}>
+    <View style={[styles.container, pal.view]}>
       <View
         style={[{backgroundColor: pal.colors.backgroundLight}, styles.search]}>
         <View style={[styles.inputContainer]}>
@@ -129,8 +129,8 @@ const styles = StyleSheet.create({
   },
   resultsContainer: {
     // @ts-ignore supported by web
-    position: 'fixed',
-    marginTop: 40,
+    // position: 'fixed',
+    marginTop: 10,
 
     flexDirection: 'column',
     width: 300,