]> git.openstreetmap.org Git - nominatim-ui.git/blobdiff - src/pages/SearchPage.svelte
allow theming (#84)
[nominatim-ui.git] / src / pages / SearchPage.svelte
index ae9aec8b84cdd780e8ef702ebb17fdd8b14ee647..802034fce6845e28c2e59e470eeb3c54bba687dd 100644 (file)
@@ -3,7 +3,8 @@
   import { get_config_value } from '../lib/config_reader.js';
   import { fetch_from_api, update_html_title } from '../lib/api_utils.js';
 
   import { get_config_value } from '../lib/config_reader.js';
   import { fetch_from_api, update_html_title } from '../lib/api_utils.js';
 
-  import SearchBar from '../components/SearchBar.svelte';
+  import Header from '../components/Header.svelte';
+  import SearchSection from '../components/SearchSection.svelte';
   import ResultsList from '../components/ResultsList.svelte';
   import Map from '../components/Map.svelte';
 
   import ResultsList from '../components/ResultsList.svelte';
   import Map from '../components/Map.svelte';
 
@@ -62,7 +63,9 @@
   }
 </script>
 
   }
 </script>
 
-<SearchBar api_request_params={api_request_params} bStructuredSearch={bStructuredSearch} />
+<Header>
+  <SearchSection api_request_params={api_request_params} bStructuredSearch={bStructuredSearch} />
+</Header>
 
 <div id="content">
   <div class="sidebar">
 
 <div id="content">
   <div class="sidebar">
 <style>
   .sidebar {
     width: 25%;
 <style>
   .sidebar {
     width: 25%;
+    min-width: 200px;
     padding: 15px;
     padding-top: 0;
     padding: 15px;
     padding-top: 0;
-    display: inline-block;
+    display: block;
     float: left;
   }
 
   #map-wrapper {
     position: relative;
     float: left;
   }
 
   #map-wrapper {
     position: relative;
-    min-height: 300px;
     height: calc(100vh - 250pt);
     height: calc(100vh - 250pt);
+    min-height: 300px;
     width: 75%;
     padding-right: 20px;
     width: 75%;
     padding-right: 20px;
-    display: inline-block;
+    display: block;
     float: left;
   }
 
     float: left;
   }
 
       width: 100%;
     }
     #map-wrapper {
       width: 100%;
     }
     #map-wrapper {
+      width: 100%;
       height: 300px;
       height: 300px;
+      padding-left: 20px;
     }
   }
 </style>
     }
   }
 </style>