fix overlay background color in dark mode

This commit is contained in:
Michael Shamoon 2022-03-29 23:03:44 -07:00
parent db76e1d65f
commit 32f6932faf
2 changed files with 6 additions and 2 deletions

View File

@ -34,6 +34,6 @@ form {
pointer-events: none;
}
.ngx-file-drop__drop-zone--over {
::ng-deep .ngx-file-drop__drop-zone--over {
background-color: var(--ngx-primary-faded) !important;
}
}

View File

@ -247,6 +247,10 @@ table.table {
.main-dropzone {
height: 100%;
width: 100%;
&.ngx-file-drop__drop-zone--over {
background-color: transparent !important;
}
}
.global-dropzone-overlay {