Commit eed53d78 authored by Mark Otto's avatar Mark Otto

Fixes #10601: Use overflow-y: auto; for navbar collapse instead of visible to...

Fixes #10601: Use overflow-y: auto; for navbar collapse instead of visible to better enable scrolling on Android 4.x
parent ee9be1a3
......@@ -4370,7 +4370,7 @@ textarea.input-group-sm > .input-group-btn > .btn {
overflow: visible !important;
}
.navbar-collapse.in {
overflow-y: visible;
overflow-y: auto;
}
.navbar-collapse .navbar-nav.navbar-left:first-child {
margin-left: -15px;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -74,7 +74,7 @@
}
&.in {
overflow-y: visible;
overflow-y: auto;
}
// Account for first and last children spacing
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment