fix: fix zIndex

This commit is contained in:
fantasticit 2022-04-29 17:17:30 +08:00
parent 585e0aa7a6
commit 9b71742869
2 changed files with 2 additions and 1 deletions

View File

@ -92,7 +92,7 @@ export const Resizeable: React.FC<IProps> = ({
const cloneNode = $cloneNode.current; const cloneNode = $cloneNode.current;
Object.assign(cloneNode.style, { Object.assign(cloneNode.style, {
zIndex: 0, zIndex: -1,
}); });
const tipNode = $cloneNodeTip.current; const tipNode = $cloneNodeTip.current;

View File

@ -8,6 +8,7 @@
.cloneNodeWrap { .cloneNodeWrap {
position: absolute; position: absolute;
z-index: -1;
display: flex; display: flex;
font-size: 14px; font-size: 14px;
color: #333; color: #333;