aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-07-16 12:24:22 -0700
committerMark Otto <[email protected]>2017-08-10 23:00:37 -0700
commit5b584c2619b89e0b987cda55656046fbbe753811 (patch)
tree478db6b620ef2dd2aaa8533bc3b883ba528f099f /docs
parente9c24b0cda50dfe2036bd4104e05789c317850e8 (diff)
downloadbootstrap-5b584c2619b89e0b987cda55656046fbbe753811.tar.xz
bootstrap-5b584c2619b89e0b987cda55656046fbbe753811.zip
missed a modifier
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/components/badge.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/4.0/components/badge.md b/docs/4.0/components/badge.md
index 193a3ca61..3ea58bbe8 100644
--- a/docs/4.0/components/badge.md
+++ b/docs/4.0/components/badge.md
@@ -41,7 +41,7 @@ Note that depending on how they are used, badges may be confusing for users of s
Unless the context is clear (as with the "Notifications" example, where it is understood that the "4" is the number of notifications), consider including additional context with a visually hidden piece of additional text.
{% example html %}
-<button class="btn">
+<button class="btn btn-primary">
Profile <span class="badge badge-light">9</span>
<span class="sr-only">unread messages</span>
</button>