help: Fix left sidebar content in smaller window.

This fixes an issue where some of the content of left
sidebar gets visible even in smaller window which looks ugly.

Fixes: #10898.
This commit is contained in:
Akash Nimare
2018-12-07 14:47:16 +05:30
committed by Tim Abbott
parent b5645848d6
commit 1dc741b963

View File

@@ -1846,10 +1846,17 @@ input.new-organization-button {
transition: all 0.3s ease;
}
.help .sidebar .content:not(.show) {
visibility: hidden;
}
.app.help .sidebar.show {
pointer-events: initial;
transform: translateX(calc(100% - 50px));
overflow: auto;
.content {
visibility: visible;
}
}
.app.help .sidebar.show + .hamburger {