Lower popover z-index to render below modals

This commit is contained in:
Gabe Kangas 2023-01-19 19:20:01 -08:00
parent a77a6641e7
commit 195cf0fbdd
No known key found for this signature in database
GPG key ID: 4345B2060657F330

View file

@ -213,3 +213,7 @@ th {
font-family: var(--theme-text-display-font-family);
font-weight: 700 !important;
}
.ant-popover {
z-index: 800; // Lower the z-index so it renders under modals.
}