Skip to content

Commit

Permalink
fixes sticky behaviour of actions menu on scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
andresgnlez committed Nov 17, 2023
1 parent 8755133 commit a8c664b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/modal/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const CONTENT_CLASSES = {
wide: `w-full sm:w-10/12 md:w-10/12 lg:w-10/12 xl:w-9/12 2xl:w-6/12 ${COMMON_CONTENT_CLASSES}`,
};

const OVERLAY_CLASSES = 'z-40 fixed inset-0 bg-black bg-blur';
const OVERLAY_CLASSES = 'z-50 fixed inset-0 bg-black bg-blur';

export const Modal: React.FC<ModalProps> = ({
id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const RowItem = ({
/>
</button>

<Popover>
<Popover modal>
<PopoverTrigger asChild>
<button
type="button"
Expand Down

0 comments on commit a8c664b

Please sign in to comment.