fix[css]: css bug in mobile #852

This commit is contained in:
Pan 2018-07-10 13:02:19 +08:00
parent 89ce53e185
commit 9b7a9a64e5
1 changed files with 5 additions and 0 deletions

View File

@ -33,6 +33,7 @@ export default {
classObj() { classObj() {
return { return {
hideSidebar: !this.sidebar.opened, hideSidebar: !this.sidebar.opened,
openSidebar: this.sidebar.opened,
withoutAnimation: this.sidebar.withoutAnimation, withoutAnimation: this.sidebar.withoutAnimation,
mobile: this.device === 'mobile' mobile: this.device === 'mobile'
} }
@ -53,6 +54,10 @@ export default {
position: relative; position: relative;
height: 100%; height: 100%;
width: 100%; width: 100%;
&.mobile.openSidebar{
position: fixed;
top: 0;
}
} }
.drawer-bg { .drawer-bg {
background: #000; background: #000;