mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 17:37:36 +01:00
11 lines
197 B
Markdown
11 lines
197 B
Markdown
|
```sass
|
||
|
=border-radius($radius)
|
||
|
-webkit-border-radius: $radius
|
||
|
-moz-border-radius: $radius
|
||
|
-ms-border-radius: $radius
|
||
|
border-radius: $radius
|
||
|
|
||
|
.box
|
||
|
+border-radius(10px)
|
||
|
```
|