help: Fix anchor hidden under navbar

The solution idea is from
https://github.com/twbs/bootstrap/issues/1768#issuecomment-46519033

Signed-off-by: Veiko Aasa <veiko17@disroot.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Veiko Aasa 2020-02-06 12:31:56 +02:00 committed by Sunil Mohan Adapa
parent 20a1c70fc2
commit c18be280f6
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -561,6 +561,15 @@ a.menu_link_active {
grid-column: 1;
}
/* Help manual - anchor is below navbar */
*[id^='idm']:before {
display: block;
content: " ";
margin-top: -60px;
height: 60px;
visibility: hidden;
}
@media screen and (max-width: 767px) {
.app-header {
display: flex;