Correctly overlay spinner over all modal elements

This commit is contained in:
Dane Everitt 2020-11-02 20:03:02 -08:00
parent b482632af4
commit 027c705733
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53

View file

@ -110,7 +110,7 @@ const Modal: React.FC<ModalProps> = ({ visible, appear, dismissable, showSpinner
<Fade timeout={150} appear in>
<div
css={tw`absolute w-full h-full rounded flex items-center justify-center`}
style={{ background: 'hsla(211, 10%, 53%, 0.25)' }}
style={{ background: 'hsla(211, 10%, 53%, 0.35)', zIndex: 9999 }}
>
<Spinner/>
</div>