Commit 50e40a4a authored by hbcui1984's avatar hbcui1984

fix:侧滑菜单在移动缩放时,主界面标题栏边缘发虚的问题

parent d4a1b654
...@@ -827,6 +827,9 @@ p ...@@ -827,6 +827,9 @@ p
-webkit-transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0);
-webkit-box-shadow: none;
box-shadow: none;
} }
.mui-off-canvas-wrap .mui-off-canvas-wrap
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -827,6 +827,9 @@ p ...@@ -827,6 +827,9 @@ p
-webkit-transform: translate3d(0, 0, 0); -webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0);
-webkit-box-shadow: none;
box-shadow: none;
} }
.mui-off-canvas-wrap .mui-off-canvas-wrap
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
.#{$namespace}bar{//fix android .#{$namespace}bar{//fix android
position: absolute!important; position: absolute!important;
@include transform(translate3d(0, 0, 0));//fix ios(offcanvas scalable的时候,bar会消失) @include transform(translate3d(0, 0, 0));//fix ios(offcanvas scalable的时候,bar会消失)
-webkit-box-shadow: none;
box-shadow: none;
} }
} }
//} //}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment