mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 09:57:35 +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
8 lines
116 B
Markdown
8 lines
116 B
Markdown
```css
|
|
.box {
|
|
-webkit-transform: rotate(30deg);
|
|
-ms-transform: rotate(30deg);
|
|
transform: rotate(30deg);
|
|
}
|
|
```
|