diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index dab3d5665..e3642ac6d 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -12,9 +12,9 @@ {% include nav-home.html %} -
+
{{ content }} -
+ {% include footer.html %} diff --git a/docs/_layouts/docs.html b/docs/_layouts/docs.html index 4c719c5d8..c44275f1f 100644 --- a/docs/_layouts/docs.html +++ b/docs/_layouts/docs.html @@ -24,10 +24,10 @@
{% include nav-docs.html %}
-
+

{{ page.title }}

{{ content }} -
+ diff --git a/docs/components/navs.md b/docs/components/navs.md index e92906229..5c3f2cf9d 100644 --- a/docs/components/navs.md +++ b/docs/components/navs.md @@ -14,7 +14,11 @@ Navigation available in Bootstrap share general markup and styles, from the base ## Base nav -The base `.nav` component is built with flexbox and provide a strong foundation for building all types of navigation components. It includes some style overrides (for working with lists), some link padding for larger hit areas, and basic disabled styling. No active states are included in the base nav. +The base `.nav` component is built with flexbox and provide a strong foundation for building all types of navigation components. It includes some style overrides (for working with lists), some link padding for larger hit areas, and basic disabled styling. + +{% callout info %} +The base `.nav` component does not include any `.active` state. The following examples include the class, mainly to demonstrate that this particular class does not trigger any special styling. +{% endcallout %} {% example html %}