diff --git a/docs/components/navbar.md b/docs/components/navbar.md
index 34fb6f28bd..06a90a2121 100644
--- a/docs/components/navbar.md
+++ b/docs/components/navbar.md
@@ -44,7 +44,7 @@ Here's an example of all the sub-components included in a default, non-responsiv
Link
- Link
+ Disabled
Dropdown
@@ -118,7 +118,7 @@ Active states—with `.active`—to indicate the current page can be applied dir
Pricing
- About
+ Disabled
@@ -132,7 +132,7 @@ And because we use classes for our navs, you can avoid the list-based approach e
Home (current)
Features
Pricing
- About
+ Disabled
{% endexample %}
diff --git a/scss/_navbar.scss b/scss/_navbar.scss
index 3ee8d41071..ebf27af8b2 100644
--- a/scss/_navbar.scss
+++ b/scss/_navbar.scss
@@ -206,6 +206,10 @@
@include hover-focus {
color: $navbar-light-hover-color;
}
+
+ &.disabled {
+ color: $navbar-light-disabled-color;
+ }
}
.open > .nav-link,
@@ -250,6 +254,10 @@
@include hover-focus {
color: $navbar-dark-hover-color;
}
+
+ &.disabled {
+ color: $navbar-dark-disabled-color;
+ }
}
.open > .nav-link,