diff options
| author | Mark Otto <[email protected]> | 2013-09-01 10:34:21 +0200 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-09-01 10:34:21 +0200 |
| commit | e8f7d4fcef07a09c2ef767149d7e93a727b3732e (patch) | |
| tree | 8a57fe443cc024689ba73746f22482fa95d56f96 /examples/offcanvas/index.html | |
| parent | 129d8fcebc3e43a7dd03abd2baa8e8134f8e28f3 (diff) | |
| download | bootstrap-e8f7d4fcef07a09c2ef767149d7e93a727b3732e.tar.xz bootstrap-e8f7d4fcef07a09c2ef767149d7e93a727b3732e.zip | |
fixes alignment and nav list in offcanvas example
Diffstat (limited to 'examples/offcanvas/index.html')
| -rw-r--r-- | examples/offcanvas/index.html | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/examples/offcanvas/index.html b/examples/offcanvas/index.html index c14e6a66d..04f01c7f1 100644 --- a/examples/offcanvas/index.html +++ b/examples/offcanvas/index.html @@ -46,6 +46,7 @@ <div class="container"> <div class="row row-offcanvas row-offcanvas-right"> + <div class="col-xs-12 col-sm-9"> <p class="pull-right visible-xs"> <button type="button" class="btn btn-primary btn-xs" data-toggle="offcanvas">Toggle nav</button> @@ -89,21 +90,18 @@ </div><!--/span--> <div class="col-xs-6 col-sm-3 sidebar-offcanvas" id="sidebar" role="navigation"> - <div class="well sidebar-nav"> - <ul class="nav"> - <li>Sidebar</li> - <li class="active"><a href="#">Link</a></li> - <li><a href="#">Link</a></li> - <li><a href="#">Link</a></li> - <li>Sidebar</li> - <li><a href="#">Link</a></li> - <li><a href="#">Link</a></li> - <li><a href="#">Link</a></li> - <li>Sidebar</li> - <li><a href="#">Link</a></li> - <li><a href="#">Link</a></li> - </ul> - </div><!--/.well --> + <div class="list-group"> + <a href="#" class="list-group-item active">Link</a> + <a href="#" class="list-group-item">Link</a> + <a href="#" class="list-group-item">Link</a> + <a href="#" class="list-group-item">Link</a> + <a href="#" class="list-group-item">Link</a> + <a href="#" class="list-group-item">Link</a> + <a href="#" class="list-group-item">Link</a> + <a href="#" class="list-group-item">Link</a> + <a href="#" class="list-group-item">Link</a> + <a href="#" class="list-group-item">Link</a> + </div> </div><!--/span--> </div><!--/row--> |
