fix(z-index):z-index order (fix #2089)

This commit is contained in:
asagay
2020-08-09 12:49:31 +08:00
committed by GitHub
parent bacfadff96
commit d07b6811c6
2 changed files with 42 additions and 1 deletions

View File

@ -115,7 +115,7 @@ const parseStackTree = (
} else if (order > 0) {
let index = 0;
parentStack.positiveZIndex.some((current, i) => {
if (order > current.element.container.styles.zIndex.order) {
if (order >= current.element.container.styles.zIndex.order) {
index = i + 1;
return false;
} else if (index > 0) {