Replies: 1 comment
-
感谢反馈,该问题终于修复了 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
如图所示
将网站目录内/dist/css/styles.7e54a98a.css内第3447行
.main-sidebar { box-shadow: 0 4px 8px rgba(0, 0, 0, .03); position: fixed; top: 0; height: 100%; width: 250px; background-color: #fff; z-index: 880; left: 0 }
修改成
.main-sidebar { box-shadow: 0 4px 8px rgba(0, 0, 0, .03); position: fixed; top: 0; height: 100%; width: 250px; background-color: #fff; z-index: 880; left: 0; overflow: auto }
即可解决
Beta Was this translation helpful? Give feedback.
All reactions