diff options
| author | Mark Otto <[email protected]> | 2013-08-06 17:28:02 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-06 17:28:02 -0700 |
| commit | c3ac95333d3c8746e8877ff02cafc41c4a692414 (patch) | |
| tree | 672b3b6104e03d12e5652b95d3c7e0ba011a9d0d /dist/css/bootstrap.css | |
| parent | 223e0321504050d4642c3db2673be0cc7f4df569 (diff) | |
| download | bootstrap-c3ac95333d3c8746e8877ff02cafc41c4a692414.tar.xz bootstrap-c3ac95333d3c8746e8877ff02cafc41c4a692414.zip | |
Fixes #8749: prevent navbar nav from overlapping navbar toggle
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 34d92672b..b3954d47d 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -2811,7 +2811,6 @@ button.close { } .navbar-nav { - margin-top: 10px; margin-bottom: 15px; } @@ -2893,6 +2892,11 @@ button.close { clear: both; } +.navbar-toggle + .nav-collapse { + width: 100%; + margin-top: 50px; +} + @media (max-width: 768px) { .nav-collapse-scrollable { max-height: 360px; |
