Skip to content

Commit

Permalink
fix(modal): fix css value error (#426)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zz-ZzzZ authored Aug 22, 2023
1 parent f3414a3 commit 5777404
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/theme/src/modal/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -450,11 +450,11 @@
}

.wl-resize {
left: -@SpaceSize / 2 + 1;
left: (-@SpaceSize / 2) + 1;
}

.wr-resize {
right: -@SpaceSize / 2 + 1;
right: (-@SpaceSize / 2) + 1;
}

.swst-resize,
Expand Down Expand Up @@ -505,11 +505,11 @@
}

.st-resize {
top: -@SpaceSize / 2 + 1;
top: (-@SpaceSize / 2) + 1;
}

.sb-resize {
bottom: -@SpaceSize / 2 + 1;
bottom: (-@SpaceSize / 2) + 1;
}
}
}
Expand Down Expand Up @@ -560,4 +560,4 @@
transform: translate3d(0, -20px, 0);
opacity: 0;
}
}
}

0 comments on commit 5777404

Please sign in to comment.