Skip to content

Commit

Permalink
fix: Such-Button auf der Startseite blockiert Favoriten nun nicht mehr (
Browse files Browse the repository at this point in the history
#283)

fixed issue
  • Loading branch information
SachsenspieltCoding authored Aug 10, 2024
1 parent 8ec696f commit abfa266
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/routes/(app)/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,14 @@

<div
class={twMerge(
'bottom-2 left-0 flex w-full justify-center',
'pointer-events-none bottom-2 left-0 flex w-full justify-center',
searchButtonSticky ? 'sticky' : 'absolute'
)}
>
<a class="bg-clickable rounded-full border-4 border-background p-3" href="/search">
<a
class="bg-clickable pointer-events-auto rounded-full border-4 border-background p-3"
href="/search"
>
<Icon icon={faMagnifyingGlass} scale={1} />
</a>
</div>

0 comments on commit abfa266

Please sign in to comment.