Skip to content

Commit 84a8a6c

Browse files
committed
Add z-index to search dropdown
1 parent 14f5f75 commit 84a8a6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/_partials/_search.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class="nav-search block w-full pl-10 pr-3 py-2 border border-gray-300 rounded-md
1616
placeholder="Search for threads..."
1717
/>
1818
<template x-if="results.length > 0">
19-
<div x-transition:enter="transition ease-out duration-100" x-transition:enter-start="transform opacity-0 scale-95" x-transition:enter-end="transform opacity-100 scale-100" x-transition:leave="transition ease-in duration-75" x-transition:leave-start="transform opacity-100 scale-100" x-transition:leave-end="transform opacity-0 scale-95" class="mt-2 origin-top-right absolute right-0 w-full rounded-md shadow-lg">
19+
<div x-transition:enter="transition ease-out duration-100" x-transition:enter-start="transform opacity-0 scale-95" x-transition:enter-end="transform opacity-100 scale-100" x-transition:leave="transition ease-in duration-75" x-transition:leave-start="transform opacity-100 scale-100" x-transition:leave-end="transform opacity-0 scale-95" class="mt-2 origin-top-right absolute right-0 w-full rounded-md shadow-lg z-10">
2020
<div class="rounded-md bg-white shadow-xs w-full">
2121
<div class="py-1">
2222
<template x-for="result in results" :key="result.subject">

0 commit comments

Comments
 (0)