mirror of
https://github.com/danog/sass-site.git
synced 2024-12-04 18:38:12 +01:00
e6cf9a748d
* 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
185 B
185 B
@mixin transform($property) {
-webkit-transform: $property;
-ms-transform: $property;
transform: $property;
}
.box { @include transform(rotate(30deg)); }