Commit 20261385 authored by Mark Otto's avatar Mark Otto
Browse files

fix blog example to use customized pagination based on button styles

parent e482fe24
Showing with 5 additions and 11 deletions
+5 -11
...@@ -125,14 +125,10 @@ h6, .h6 { ...@@ -125,14 +125,10 @@ h6, .h6 {
/* Pagination */ /* Pagination */
.pager { .blog-pagination {
margin-bottom: 4rem; margin-bottom: 4rem;
text-align: left;
} }
.pager > li > a { .blog-pagination > .btn {
width: 8rem;
padding: .75rem 1.25rem;
text-align: center;
border-radius: 2rem; border-radius: 2rem;
} }
......
...@@ -104,11 +104,9 @@ ...@@ -104,11 +104,9 @@
<p>Donec ullamcorper nulla non metus auctor fringilla. Nulla vitae elit libero, a pharetra augue.</p> <p>Donec ullamcorper nulla non metus auctor fringilla. Nulla vitae elit libero, a pharetra augue.</p>
</div><!-- /.blog-post --> </div><!-- /.blog-post -->
<nav> <nav class="blog-pagination">
<ul class="pager"> <a class="btn btn-outline-primary" href="#">Older</a>
<li><a href="#">Older</a></li> <a class="btn btn-outline-secondary disabled" href="#">Newer</a>
<li class="disabled"><a href="#">Newer</a></li>
</ul>
</nav> </nav>
</div><!-- /.blog-main --> </div><!-- /.blog-main -->
......
Supports Markdown
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