Skip to content

Commit

Permalink
fix: changes the z-index of modal (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
malinovic authored Apr 26, 2024
1 parent 511641d commit 790c91f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/modal/modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export interface ModalProps {
export const Modal: FC<ModalProps> = ({ children, title, isOpen, width, onClose, onSubmit }) => {
return (
<Transition appear show={isOpen} as={Fragment}>
<Dialog as="div" className="relative z-10" onClose={onClose}>
<Dialog as="div" className="relative z-30" onClose={onClose}>
<Transition.Child
as={Fragment}
enter="ease-out duration-300"
Expand Down

0 comments on commit 790c91f

Please sign in to comment.