Modal needs transform class to fix z-index issue

This commit is contained in:
tjs 2022-08-16 19:57:10 -04:00
parent af922c8cdb
commit 17d4215572
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ function Modal({
<span className="inline-block h-screen align-middle" aria-hidden="true">
&#8203;
</span>
<div className="my-8 inline-block w-full max-w-md overflow-x-hidden rounded-lg border border-th-bkg-3 bg-th-bkg-1 p-6 text-left align-middle shadow-xl">
<div className="my-8 inline-block w-full max-w-md transform overflow-x-hidden rounded-lg border border-th-bkg-3 bg-th-bkg-1 p-6 text-left align-middle shadow-xl">
{!hideClose ? (
<button
onClick={onClose}