sass-site/source/code-snippets/_homepage-mixins-scss.md
Guillaume Bonnet e6cf9a748d Update @mixin prefixe property (#176)
* Update _homepage-mixins-css.md

* Update _homepage-mixins-sass.md

* Update _homepage-mixins-scss.md

* Update guide.html.haml

Changing #topic-6 :
property border-radius to transform because prefixe border-radius is outdated

* Update _homepage-mixins-sass.md

* Update _homepage-mixins-scss.md

* Update guide.html.haml

* Update guide.html.haml

Short line 150

* Update _homepage-mixins-scss.md

* Update guide.html.haml
2018-06-16 14:29:08 -07:00

185 B

@mixin transform($property) {
  -webkit-transform: $property;
      -ms-transform: $property;
          transform: $property;
}

.box { @include transform(rotate(30deg)); }