1
0
Fork 0
freesewing/sites/shared/components/modal/modal.mjs

21 lines
456 B
JavaScript
Raw Normal View History

export const Modal = ({ cancel, children }) => (
2022-10-12 20:40:08 +02:00
<div
className={`
fixed top-0 left-0 right-0 w-screen h-screen
bg-neutral bg-opacity-80 z-30
2022-10-12 20:40:08 +02:00
hover:cursor-pointer flex flex-col justify-center
`}
onClick={cancel}
2022-10-12 20:40:08 +02:00
>
<div
className="m-auto text-neutral-content lightbox"
2022-10-12 20:40:08 +02:00
style={{
maxHeight: 'calc(100vh - 6rem)',
maxWidth: 'calc(100vw - 6rem)',
}}
>
{children}
2022-10-12 20:40:08 +02:00
</div>
</div>
)