fix: removed highlighted header-action-bar on confirmation pop-up

This commit is contained in:
ayeshoali
2022-10-25 11:30:44 +05:00
parent c5ad7cfca5
commit 2203f43052
2 changed files with 8 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ function DeleteConfirmation({
onDelete,
}) {
return (
<ModalDialog title={title} isOpen={isOpen} hasCloseButton={false} onClose={onClose}>
<ModalDialog title={title} isOpen={isOpen} hasCloseButton={false} onClose={onClose} zIndex={5000}>
<ModalDialog.Header>
<ModalDialog.Title>
{title}

View File

@@ -118,7 +118,7 @@ $fa-font-path: "~font-awesome/fonts";
header {
.user-dropdown {
z-index: 10000;
z-index: 2005;
}
.logo {
margin-right: 1rem;
@@ -227,7 +227,7 @@ header {
.header-action-bar {
background-color: #fff;
z-index: 9999;
z-index: 2002;
box-shadow: 0px 2px 4px rgb(0 0 0 / 15%), 0px 2px 8px rgb(0 0 0 / 15%);
position: sticky;
top: 0;
@@ -240,3 +240,8 @@ header {
.discussion-topic-group:last-of-type .divider{
display: none;
}
.zindex-5000{
z-index: 5000;
}