diff options
Diffstat (limited to 'docs/components/helpers.md')
| -rw-r--r-- | docs/components/helpers.md | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/docs/components/helpers.md b/docs/components/helpers.md index e41b017ee..f76ff581b 100644 --- a/docs/components/helpers.md +++ b/docs/components/helpers.md @@ -78,18 +78,13 @@ Float an element to the left or right with a class. `!important` is included to // Usage as mixins .element { - .pull-left(); + @include pull-left; } .another-element { - .pull-right(); + @include pull-right; } {% endhighlight %} -<div class="bs-callout bs-callout-warning"> - <h4>Not for use in navbars</h4> - <p>To align components in navbars with utility classes, use <code>.navbar-left</code> or <code>.navbar-right</code> instead. <a href="../components/#navbar-component-alignment">See the navbar docs</a> for details.</p> -</div> - ### Center content blocks Set an element to `display: block;` and center via `margin`. Available as a mixin and class. |
