diff options
| author | Ilya Radchenko <[email protected]> | 2014-10-22 11:56:12 -0400 |
|---|---|---|
| committer | Ilya Radchenko <[email protected]> | 2014-10-22 11:56:12 -0400 |
| commit | fb70b13dc30dc94c610ae8bc3f98f07336694362 (patch) | |
| tree | fb66010b788ab6cc9585a3b688605630bdd0501f | |
| parent | b2385016ecfc0cbd2059a595c66726236a7bc91f (diff) | |
| download | bootstrap-fb70b13dc30dc94c610ae8bc3f98f07336694362.tar.xz bootstrap-fb70b13dc30dc94c610ae8bc3f98f07336694362.zip | |
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.
| -rw-r--r-- | docs/assets/css/src/docs.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/assets/css/src/docs.css b/docs/assets/css/src/docs.css index 0e43d1f55..1268c7690 100644 --- a/docs/assets/css/src/docs.css +++ b/docs/assets/css/src/docs.css @@ -638,6 +638,8 @@ body { .bs-docs-sidebar.affix { position: fixed; /* Undo the static from mobile first approach */ top: 20px; + bottom: 0; + overflow-y: auto; } .bs-docs-sidebar.affix-bottom { position: absolute; /* Undo the static from mobile first approach */ |
