Show horizontal scrollbar when needed in the menubar in the lower

resolution, when navbar button is visible.

Added appropriate CSS in the .navbar-collapse class to show scrollbar
in screen resolution (992px widith)
pull/33/head
Ashesh Vashi 2020-07-02 11:20:14 +05:30
parent 0850db2a9b
commit 1366dd1fcd
1 changed files with 7 additions and 0 deletions

View File

@ -346,3 +346,10 @@ td.switch-cell > div.toggle {
border-color: $custom-control-indicator-focus-border-color;
}
}
@media (max-width: 992px) {
.navbar-collapse {
max-height: 99vh;
overflow-y: auto;
}
}