explorer: fix modal backdrop z-index (#21499)

This commit is contained in:
Justin Starry 2021-11-29 16:52:12 -06:00 committed by GitHub
parent 2be859d304
commit d637371882
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -32,10 +32,7 @@ export function ClusterModal() {
return (
<>
<div
className={`offcanvas offcanvas-end${show ? " show" : ""}`}
onClick={onClose}
>
<div className={`offcanvas offcanvas-end${show ? " show" : ""}`}>
<div className="modal-body" onClick={(e) => e.stopPropagation()}>
<span className="c-pointer" onClick={onClose}>
&times;

View File

@ -76,6 +76,8 @@ ul.log-messages {
.offcanvas {
visibility: visible;
// Bootstrap 5.1 updates modal-backdrop to a higher z-index
z-index: 1060;
}
.c-pointer {