We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pro 组件库还在维护吗? 目前在使用过程中发现了一个BUG,情况如下:
.ui-actionsheet { width: 100%; padding: 0 7px; border: 0; -webkit-box-sizing: border-box; box-sizing: border-box; position: absolute; bottom: 0; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); -webkit-transition: 200ms ease-in-out; transition: 200ms ease-in-out; visibility: hidden; backface-visibility: hidden; }
visibility: hidden; 导致部分机型不能正常显示弹窗,去掉即可!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Pro 组件库还在维护吗? 目前在使用过程中发现了一个BUG,情况如下:
.ui-actionsheet {
width: 100%;
padding: 0 7px;
border: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: absolute;
bottom: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
-webkit-transition: 200ms ease-in-out;
transition: 200ms ease-in-out;
visibility: hidden;
backface-visibility: hidden;
}
visibility: hidden; 导致部分机型不能正常显示弹窗,去掉即可!
The text was updated successfully, but these errors were encountered: