mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Toast): should lock scroll when use forbidClick
This commit is contained in:
parent
e7ad89a35d
commit
df877751b3
@ -27,9 +27,12 @@
|
|||||||
border-radius: @toast-border-radius;
|
border-radius: @toast-border-radius;
|
||||||
transform: translate3d(-50%, -50%, 0);
|
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 {
|
&--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;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user