Skip to content

Commit

Permalink
Merge pull request #11 from tminaorg/fix-responsiveness
Browse files Browse the repository at this point in the history
fix: Responsiveness on mobile
  • Loading branch information
aleksasiriski authored Oct 31, 2023
2 parents 9fa734f + 45d55ac commit 550423c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/routes/search/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,17 @@
class="custom-bg-headfoot dark:custom-bg-headfoot flex h-36 items-center border border-gray-100 dark:border-0"
>
<div class="mx-4 w-full min-w-fit">
<div class="mx-auto flex max-w-screen-md items-center">
<div class="md:mx-auto flex max-w-screen-md items-center">
<a href="/">
<img class="h-auto w-20" src="/img/brzaguza.svg" alt="" />
</a>
<Searchbox bind:query={data.query} />
<div class="w-0 sm:w-20" />
<div class="w-0 md:w-20" />
</div>
</div>
</header>
<div class="mx-auto mb-4 max-w-screen-sm">

<div class="sm:mx-auto mb-4 max-w-screen-sm">
<div id="result-list" class="mx-2 my-4 max-w-fit overflow-clip">
{#each data.results as result (result.URL)}
<article id="result-{result.Rank}">
Expand Down

0 comments on commit 550423c

Please sign in to comment.