Commit fb70b13d authored by Ilya Radchenko's avatar Ilya Radchenko

Allow to scroll the nav

Basically it's impossible to use the navigation if it's expanded. This will allow it to be scrollable so that the menus are accessable.
parent b2385016
...@@ -638,6 +638,8 @@ body { ...@@ -638,6 +638,8 @@ body {
.bs-docs-sidebar.affix { .bs-docs-sidebar.affix {
position: fixed; /* Undo the static from mobile first approach */ position: fixed; /* Undo the static from mobile first approach */
top: 20px; top: 20px;
bottom: 0;
overflow-y: auto;
} }
.bs-docs-sidebar.affix-bottom { .bs-docs-sidebar.affix-bottom {
position: absolute; /* Undo the static from mobile first approach */ position: absolute; /* Undo the static from mobile first approach */
......
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