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
parent
0850db2a9b
commit
1366dd1fcd
|
@ -346,3 +346,10 @@ td.switch-cell > div.toggle {
|
||||||
border-color: $custom-control-indicator-focus-border-color;
|
border-color: $custom-control-indicator-focus-border-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 992px) {
|
||||||
|
.navbar-collapse {
|
||||||
|
max-height: 99vh;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue