/help/: Fix mobile scrollbar appearing incorrectly.

For <1000px (aka the mobile view), we need to set "overflow: hidden"
on the sidebar unless the sidebar is actually expanded.

Fixes: #6730.
This commit is contained in:
Shubham Dhama 2017-09-28 14:24:25 +05:30 committed by Tim Abbott
parent da3c008872
commit 1d0073cef9
1 changed files with 2 additions and 1 deletions

View File

@ -1343,13 +1343,14 @@ input.new-organization-button {
padding-right: 80px;
transform: translateX(0);
transition: all 0.3s ease;
overflow: hidden;
height: 100vh;
}
.app.help .sidebar.show {
padding-right: 20px;
transform: translateX(280px);
overflow: auto !important;
}
.app.help .sidebar.show + .hamburger {