diff options
| author | Mark Otto <[email protected]> | 2014-12-23 04:40:42 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-12-23 04:40:42 -0800 |
| commit | dfb6a679d22e18bcac1a3ac6adea192eea2b02dc (patch) | |
| tree | 9799bd94adb610e84aca077b4d7d480d7155aee8 | |
| parent | 9aa8239f88216875bbc7d571a6343f1508f6b2c0 (diff) | |
| download | bootstrap-dfb6a679d22e18bcac1a3ac6adea192eea2b02dc.tar.xz bootstrap-dfb6a679d22e18bcac1a3ac6adea192eea2b02dc.zip | |
audit helpers docs: quick floats
| -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. |
