fixing list-group badge example (#23293)

https://github.com/twbs/bootstrap/issues/23291
This commit is contained in:
béla 2017-08-11 19:24:25 +02:00 committed by Mark Otto
parent d9d9c4b653
commit 3935e069f0
1 changed files with 3 additions and 3 deletions

View File

@ -115,15 +115,15 @@ Add badges to any list group item to show unread counts, activity, and more with
<ul class="list-group">
<li class="list-group-item d-flex justify-content-between align-items-center">
Cras justo odio
<span class="badge badge-default badge-pill">14</span>
<span class="badge badge-primary badge-pill">14</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Dapibus ac facilisis in
<span class="badge badge-default badge-pill">2</span>
<span class="badge badge-primary badge-pill">2</span>
</li>
<li class="list-group-item d-flex justify-content-between align-items-center">
Morbi leo risus
<span class="badge badge-default badge-pill">1</span>
<span class="badge badge-primary badge-pill">1</span>
</li>
</ul>
{% endexample %}