Skip to content

Commit

Permalink
fix(search): add z-index
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroAkbal committed Jun 14, 2023
1 parent 174ca2c commit 8927bcb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/posts/navigation/search/SearchMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@

<!-- Options -->
<ComboboxOptions
class="absolute mt-2 max-h-72 w-full overflow-auto rounded-md bg-base-1000 py-1 text-base ring-1 ring-base-0/20 sm:text-sm"
class="absolute z-10 mt-2 max-h-72 w-full overflow-auto rounded-md bg-base-1000 py-1 text-base ring-1 ring-base-0/20 sm:text-sm"
>
<ComboboxOption
v-for="tag in tagResults"
Expand Down Expand Up @@ -306,8 +306,6 @@
:icon="StarIcon"
:options="scoreOptions"
/>

<!-- TODO: Clear all button -->
</section>
</section>

Expand All @@ -320,6 +318,8 @@
<ol class="mt-2 flex flex-wrap gap-2.5 rounded-md">
<!-- -->

<!-- TODO: Clear all button -->

<li
v-for="(tag, index) in selectedTags"
:key="tag.name"
Expand Down

0 comments on commit 8927bcb

Please sign in to comment.