non-fixed navbar broken in 2.0.2...
Created by: jszakmeister
I think this was a result of fixing #2093 (closed). In a non-fixed version of the navbar, the text in no longer centered on the page, but appears all the way on the left-hand side.
This is what it looked like in 2.0.1: http://i.imgur.com/vgRgJ.png
This is what it looks like now: http://i.imgur.com/NZEpK.png
BTW, the code I used for the page was this:
<html>
<head>
<link rel="stylesheet" href="docs/assets/css/bootstrap.css" type="text/css">
</head>
<body>
<div class="navbar">
<div class="navbar-inner">
<div class="container">
<a class="brand" href="#">
Project name
</a>
<ul class="nav">
<li class="active">
<a href="#">Home</a>
</li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>