Skip to content

Commit

Permalink
fix z index for search bar
Browse files Browse the repository at this point in the history
  • Loading branch information
marhaupe committed Aug 27, 2024
1 parent bbedaca commit 768ab96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/SearchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const SearchQueryBuilder = forwardRef(function SearchQueryBuilder(
}));

return (
<div className="sticky rounded-md top-0 p-2 bg-background">
<div className="sticky rounded-md top-0 p-2 bg-background z-50">
<form
className="flex flex-row items-center justify-between h-10 rounded-md border text-sm focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50"
onSubmit={handleSubmit((data) => {
Expand Down

0 comments on commit 768ab96

Please sign in to comment.