fix(Toast): should lock scroll when use forbidClick

This commit is contained in:
chenjiahan 2020-03-12 19:06:42 +08:00
parent e7ad89a35d
commit df877751b3

View File

@ -27,9 +27,12 @@
border-radius: @toast-border-radius;
transform: translate3d(-50%, -50%, 0);
// should not add pointer-events: none directly to body tag
// that will cause unexpected tap-highlight-color in mobile safari
&--unclickable {
// lock scroll
overflow: hidden;
// should not add pointer-events: none directly to body tag
// that will cause unexpected tap-highlight-color in mobile safari
* {
pointer-events: none;
}