Skip to content

Commit

Permalink
Fix UI glitch (#3024)
Browse files Browse the repository at this point in the history
  • Loading branch information
balanza authored Sep 26, 2024
1 parent 23ca094 commit e8d3ec2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/js/common/Pagination/Pagination.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function ItemsPerPageSelector({
<div className="flex pl-3 items-center text-sm">
<span className="pr-2 text-gray-600">Results per page</span>
<Select
className="z-40 w-20"
className="w-20"
optionsName=""
options={itemsPerPageOptions}
value={currentItemsPerPage}
Expand Down
2 changes: 1 addition & 1 deletion assets/js/common/Select/Select.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function Select({
leaveFrom="opacity-100"
leaveTo="opacity-0"
>
<Listbox.Options className="absolute w-full py-1 mt-1 overflow-auto text-base bg-white rounded-md shadow-lg max-h-60 ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm z-[1]">
<Listbox.Options className="absolute w-full py-1 mt-1 overflow-auto text-base bg-white rounded-md shadow-lg max-h-60 ring-1 ring-black ring-opacity-5 focus:outline-none sm:text-sm z-40">
{enrichedOptions.map((option) => (
<Listbox.Option
key={option.value}
Expand Down

0 comments on commit e8d3ec2

Please sign in to comment.