diff options
| author | Mark Otto <[email protected]> | 2014-12-23 04:53:19 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2014-12-23 04:53:19 -0800 |
| commit | 491503e4ae56942eaf9024d0be0eada1bd55751e (patch) | |
| tree | 8edf44a1020c838b1173aafd1c399b3dac95df16 /docs/components/helpers.md | |
| parent | dfb6a679d22e18bcac1a3ac6adea192eea2b02dc (diff) | |
| download | bootstrap-491503e4ae56942eaf9024d0be0eada1bd55751e.tar.xz bootstrap-491503e4ae56942eaf9024d0be0eada1bd55751e.zip | |
audit helpers docs: fix mixins formatting for scss conversion
Diffstat (limited to 'docs/components/helpers.md')
| -rw-r--r-- | docs/components/helpers.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/components/helpers.md b/docs/components/helpers.md index f76ff581b..1d347b9e9 100644 --- a/docs/components/helpers.md +++ b/docs/components/helpers.md @@ -103,7 +103,7 @@ Set an element to `display: block;` and center via `margin`. Available as a mixi // Usage as mixins .element { - .center-block(); + @include center-block; } {% endhighlight %} @@ -128,7 +128,7 @@ Easily clear `float`s by adding `.clearfix` **to the parent element**. Utilizes // Usage as a Mixin .element { - .clearfix(); + @include clearfix; } {% endhighlight %} @@ -161,8 +161,8 @@ Hide an element to all devices **except screen readers** with `.sr-only`. Combin {% highlight scss %} // Usage as a Mixin .skip-navigation { - .sr-only(); - .sr-only-focusable(); + @include sr-only; + @include sr-only-focusable; } {% endhighlight %} @@ -177,6 +177,6 @@ Utilize the `.text-hide` class or mixin to help replace an element's text conten {% highlight scss %} // Usage as a Mixin .heading { - .text-hide(); + @include text-hide; } {% endhighlight %} |
