aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorbéla <[email protected]>2017-08-11 19:24:25 +0200
committerMark Otto <[email protected]>2017-08-11 10:24:25 -0700
commit3935e069f0918010840c40939f6de69a17f25438 (patch)
treea484f77c2446404a74a143a273c3a81caba08f90 /docs
parentd9d9c4b6537fe22d355b85b0fe39879be4818b01 (diff)
downloadbootstrap-3935e069f0918010840c40939f6de69a17f25438.tar.xz
bootstrap-3935e069f0918010840c40939f6de69a17f25438.zip
fixing list-group badge example (#23293)
https://github.com/twbs/bootstrap/issues/23291
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/components/list-group.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/4.0/components/list-group.md b/docs/4.0/components/list-group.md
index 4fea041f7..8dc25a0dc 100644
--- a/docs/4.0/components/list-group.md
+++ b/docs/4.0/components/list-group.md
@@ -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 %}